IRP

Read dataset

source("00_dataset.R")

head(trainingSet)
##   outcome    Height Temperature Smoking.1 `KPS score`90 `KPS score`70
## 1    zero 0.6428571       0.075         1             0             0
## 2    zero 0.5238095       0.150         1             0             1
## 3    zero 0.8095238       0.100         1             0             0
## 4    zero 0.6190476       0.200         1             0             0
## 5    zero 0.7619048       0.225         1             0             0
## 6    zero 0.0000000       0.200         0             0             0
##   `KPS score`80 `Number of underlying diseases`0
## 1             1                                0
## 2             0                                0
## 3             1                                0
## 4             1                                0
## 5             1                                0
## 6             1                                0
##   `Number of underlying diseases`1 `Number of underlying diseases`2
## 1                                0                                1
## 2                                1                                0
## 3                                1                                0
## 4                                0                                1
## 5                                1                                0
## 6                                0                                1
##   `Previous lung disease`1 `ICIs drugs`1 `ICIs drugs`2 `ICIs drugs`3
## 1                        0             0             0             0
## 2                        0             0             1             0
## 3                        1             0             1             0
## 4                        1             0             0             0
## 5                        0             0             1             0
## 6                        1             0             0             0
##   `ICIs drugs`4 `ICIs drugs`5 `ICIs drugs`6 `ICIs drugs`7 `ICIs drugs`8
## 1             0             0             0             1             0
## 2             0             0             0             0             0
## 3             0             0             0             0             0
## 4             1             0             0             0             0
## 5             0             0             0             0             0
## 6             0             0             0             1             0
##   `ICIs dosage`2 `Course of treatment` `Number of combined antitumor drugs`1
## 1              0               0.03125                                     1
## 2              0               0.00000                                     1
## 3              0               0.37500                                     1
## 4              1               0.12500                                     1
## 5              0               0.00000                                     1
## 6              0               0.03125                                     0
##   `Number of combined drugs`1 `Previous treatment_yn`1
## 1                           0                        1
## 2                           1                        1
## 3                           0                        1
## 4                           0                        0
## 5                           0                        1
## 6                           1                        1
##   `Number of previous treatment drugs`1 `Percentage of CD4 lymphocytes`
## 1                                     1                       0.4529781
## 2                                     1                       0.4130094
## 3                                     1                       0.2115987
## 4                                     0                       0.4028213
## 5                                     1                       0.1927900
## 6                                     1                       0.4130094
##   `Percentage of NK cell` `Percentage of  T lymphocytes`
## 1               0.3744186                      0.4557143
## 2               0.2139535                      0.6471429
## 3               0.3627907                      0.6842857
## 4               0.1279070                      0.8842857
## 5               0.8139535                      0.1300000
## 6               0.2930233                      0.6471429
##   `Percentage of eosinophilus cells` `Percentage of neutrophilic granulocyte`
## 1                         0.13793103                                0.7089744
## 2                         0.15862069                                0.9243590
## 3                         0.08965517                                0.5076923
## 4                         0.15862069                                0.6500000
## 5                         0.16551724                                0.6551282
## 6                         0.08965517                                0.7384615

Feature selection

Feature selection (Recursive Feature Elimination)

set.seed(355)

rfFuncs$summary <- BigSummary

objectives =  "SBrier" 
  
  'auc_ap_sbr' 
## [1] "auc_ap_sbr"
x_tmp = trainingSet[,c(2:ncol(trainingSet))]

y_tmp = trainingSet[,1]

rfProfile <- rfe(x_tmp,y_tmp, sizes=c(1:ncol(trainingSet)), rfeControl=rfeControl(rfFuncs,method = "repeatedcv",
                   repeats = 10,
                   number = 3),
                 metric=objectives)

viz feature selection output

trellis.par.set(caretTheme())
plot(rfProfile, type = c("g", "o"))

predictors(rfProfile) 
##  [1] "`ICIs drugs`7"                           
##  [2] "`Number of underlying diseases`2"        
##  [3] "`ICIs drugs`8"                           
##  [4] "`Percentage of NK cell`"                 
##  [5] "`Previous lung disease`1"                
##  [6] "`Number of underlying diseases`0"        
##  [7] "`ICIs drugs`5"                           
##  [8] "Temperature"                             
##  [9] "`ICIs drugs`2"                           
## [10] "`ICIs drugs`3"                           
## [11] "`Course of treatment`"                   
## [12] "`Percentage of eosinophilus cells`"      
## [13] "`Percentage of  T lymphocytes`"          
## [14] "`Percentage of neutrophilic granulocyte`"
## [15] "`ICIs drugs`1"                           
## [16] "`Percentage of CD4 lymphocytes`"         
## [17] "`KPS score`70"                           
## [18] "Smoking.1"                               
## [19] "Height"                                  
## [20] "`ICIs dosage`2"                          
## [21] "`ICIs drugs`4"                           
## [22] "`KPS score`80"                           
## [23] "`Number of underlying diseases`1"        
## [24] "`Previous treatment_yn`1"                
## [25] "`ICIs drugs`6"                           
## [26] "`Number of combined antitumor drugs`1"   
## [27] "`Number of combined drugs`1"             
## [28] "`Number of previous treatment drugs`1"

Tuning

Tune and build model

twoClassCtrl <- trainControl(
  method = "repeatedcv",
  number = 3,
  repeats = 10, #for repeatedcv
  savePredictions = "final",
  classProbs = T,
  summaryFunction = BigSummary, 
  sampling = "up"
)

set.seed(355)
glmnet_m <- train(outcome ~., data = trainingSet1, method = "glmnet",  metric = objectives,  trControl = twoClassCtrl, tuneLength = 20)

rf_m <- train(outcome ~., data = trainingSet1, method = "rf",  metric = objectives,  trControl = twoClassCtrl, tuneLength = 10)

xgb_m <- train(outcome ~., data = trainingSet1, method = "xgbTree",  metric = objectives,  trControl = twoClassCtrl)
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:21:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:22:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [09:23:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.

PPV

glm_cat_test <- pred_cat_f(model_m = glmnet_m,model_name='ElasticNet',
                           testdat=testSet1,data_type = 'Test')%>% data.frame()

rf_cat_test <- pred_cat_f(model_m = rf_m,model_name='RF',testdat=testSet1,data_type = 'Test')%>% data.frame()

xgb_cat_test <- pred_cat_f(model_m = xgb_m,model_name='XGBoost',testdat=testSet1,data_type = 'Test')%>% data.frame()


glm_cat_val <- pred_cat_f(model_m = glmnet_m,model_name='ElasticNet',testdat=testSet1,data_type = 'Validation')%>% data.frame()

rf_cat_val <- pred_cat_f(model_m = rf_m,model_name='RF',testdat=testSet1,data_type = 'Validation')%>% data.frame()

xgb_cat_val <- pred_cat_f(model_m = xgb_m,model_name='XGBoost',testdat=testSet1,data_type = 'Validation')%>% data.frame()


cat_sum <- rbind(glm_cat_test,rf_cat_test,xgb_cat_test,
      glm_cat_val,rf_cat_val,xgb_cat_val
      )


DT::datatable(cat_sum,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

Evaluation

metrics

glm_perf <- sum_perf_f(glmnet_m, testdat=testSet1,model_name='ElasticNet') %>% data.frame()

rf_perf <- sum_perf_f(rf_m, testdat=testSet1,model_name='RF') %>% data.frame()

xgb_perf <- sum_perf_f(xgb_m, testdat=testSet1,model_name='XGBoost') %>% data.frame()

metrics_res <- rbind(glm_perf,rf_perf,xgb_perf)

# colnames(metrics_res) <- c('data_type','model_name','Acc','Kappa','AUCPROC','AUCPR','SBrier','Brier','Precision','Recall','F','auc_ap_sbr','s_z','s_p')

DT::datatable(metrics_res,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

viz perf

ROC

roc_glmnet <- roc_f(model_m=glmnet_m,testdat=testSet1)
roc_rf <- roc_f(model_m=rf_m,testdat=testSet1)
roc_xgb <- roc_f(model_m=xgb_m,testdat=testSet1)

g_roc_train <- ggroc(list(ElasticNet=roc_glmnet[[1]], RF=roc_rf[[1]], XGBoost = roc_xgb[[1]]), size = 1,legacy.axes=TRUE)+
  geom_segment(aes(x = 0, xend = 1, y = 0, yend = 1), color="darkgrey", linetype="dashed")+
  theme_minimal()
g_roc_test <- ggroc(list(ElasticNet=roc_glmnet[[2]], RF=roc_rf[[2]], XGBoost = roc_xgb[[2]]), size = 1,legacy.axes=TRUE)+
  geom_segment(aes(x = 0, xend = 1, y = 0, yend = 1), color="darkgrey", linetype="dashed")+
  theme_minimal()

g_roc_train

g_roc_test

Calibration plot

cali_plot_f(model_m=glmnet_m,model_name='ElasticNet',testdat=testSet1)

cali_plot_f(model_m=rf_m,model_name='RF',testdat=testSet1)

cali_plot_f(model_m=xgb_m,model_name='XGBoost',testdat=testSet1)

Feature importance

glm_vip <- vip_f(glmnet_m,model_name = 'ElasticNet')
rf_vip <- vip_f(rf_m,model_name = 'RF')
xgb_vip <- vip_f(xgb_m,model_name = 'XGBoost')
vip_sum <- rbind(glm_vip,rf_vip,xgb_vip)

DT::datatable(vip_sum,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

SHAP

# ks_glm <- kernelshap(glmnet_m, trainingSet1[,-1],
#                    bg_X = trainingSet1,
#                    type="prob")

ks_glm1 <- ks_glm$S[[1]]

ks_glm2 <- ks_glm$S[[2]]

sv_importance(shapviz(ks_glm1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_glm2,trainingSet1[,-1]), "bee")

ks_rf1 <- ks_rf$S[[1]]

ks_rf2 <- ks_rf$S[[2]]

sv_importance(shapviz(ks_rf1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_rf2,trainingSet1[,-1]), "bee")

ks_xgb1 <- ks_xgb$S[[1]]

ks_xgb2 <- ks_xgb$S[[2]]

sv_importance(shapviz(ks_xgb1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_xgb2,trainingSet1[,-1]), "bee")

# Recalibratioin model

Save model for future use

saveRDS(rf_m, "rf_m.rds")

saveRDS(glmnet_m, "glmnet_m.rds")


saveRDS(xgb_m, "xgb_m.rds")

backup

glmnet

## train and test
viz_perf_f(model_m=glmnet_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##              one       zero  obs  Group  TP   TN   FP  FN        SENS
## 131  0.975076870 0.02492313  one Group1   1 1140    0 389 0.002564103
## 342  0.974984284 0.02501572  one Group1   2 1140    0 388 0.005128205
## 1170 0.950328371 0.04967163  one Group1   3 1140    0 387 0.007692308
## 50   0.948467986 0.05153201  one Group1   4 1140    0 386 0.010256410
## 1285 0.942751126 0.05724887 zero Group1   4 1139    1 386 0.010256410
## 294  0.935222807 0.06477719  one Group1   5 1139    1 385 0.012820513
## 257  0.931848546 0.06815145  one Group1   6 1139    1 384 0.015384615
## 543  0.923160985 0.07683901  one Group1   7 1139    1 383 0.017948718
## 1472 0.915490089 0.08450991  one Group1   8 1139    1 382 0.020512821
## 482  0.914916558 0.08508344 zero Group1   8 1138    2 382 0.020512821
## 826  0.909710427 0.09028957  one Group1   9 1138    2 381 0.023076923
## 1178 0.906667318 0.09333268 zero Group1   9 1137    3 381 0.023076923
## 820  0.904687551 0.09531245  one Group1  10 1137    3 380 0.025641026
## 1019 0.900461541 0.09953846 zero Group1  10 1136    4 380 0.025641026
## 1    0.897322862 0.10267714  one Group1  11 1136    4 379 0.028205128
## 624  0.892355129 0.10764487 zero Group1  11 1135    5 379 0.028205128
## 449  0.892225794 0.10777421  one Group1  12 1135    5 378 0.030769231
## 127  0.891517363 0.10848264  one Group1  13 1135    5 377 0.033333333
## 1376 0.889934409 0.11006559 zero Group1  13 1134    6 377 0.033333333
## 246  0.886196185 0.11380382  one Group1  14 1134    6 376 0.035897436
## 263  0.884787998 0.11521200 zero Group1  14 1133    7 376 0.035897436
## 195  0.884406865 0.11559314  one Group1  15 1133    7 375 0.038461538
## 1482 0.883951190 0.11604881 zero Group1  15 1132    8 375 0.038461538
## 538  0.882585573 0.11741443  one Group1  16 1132    8 374 0.041025641
## 1321 0.880234005 0.11976599 zero Group1  16 1131    9 374 0.041025641
## 208  0.880191945 0.11980806  one Group1  17 1131    9 373 0.043589744
## 1300 0.879069022 0.12093098 zero Group1  17 1130   10 373 0.043589744
## 150  0.878984183 0.12101582  one Group1  18 1130   10 372 0.046153846
## 232  0.878107713 0.12189229  one Group1  19 1130   10 371 0.048717949
## 818  0.876442215 0.12355779  one Group1  20 1130   10 370 0.051282051
## 752  0.876151536 0.12384846  one Group1  21 1130   10 369 0.053846154
## 211  0.875473534 0.12452647  one Group1  22 1130   10 368 0.056410256
## 248  0.873672721 0.12632728  one Group1  23 1130   10 367 0.058974359
## 205  0.871358387 0.12864161  one Group1  24 1130   10 366 0.061538462
## 138  0.871147930 0.12885207  one Group1  25 1130   10 365 0.064102564
## 1061 0.870283801 0.12971620  one Group1  26 1130   10 364 0.066666667
## 5    0.869743160 0.13025684  one Group1  27 1130   10 363 0.069230769
## 287  0.869106736 0.13089326  one Group1  28 1130   10 362 0.071794872
## 11   0.866930225 0.13306978  one Group1  29 1130   10 361 0.074358974
## 1003 0.866603833 0.13339617 zero Group1  29 1129   11 361 0.074358974
## 343  0.865497830 0.13450217  one Group1  30 1129   11 360 0.076923077
## 270  0.864747862 0.13525214 zero Group1  30 1128   12 360 0.076923077
## 1397 0.861442161 0.13855784 zero Group1  30 1127   13 360 0.076923077
## 796  0.861033392 0.13896661 zero Group1  30 1126   14 360 0.076923077
## 1309 0.860612702 0.13938730 zero Group1  30 1125   15 360 0.076923077
## 462  0.859901435 0.14009857 zero Group1  30 1124   16 360 0.076923077
## 1256 0.859751368 0.14024863  one Group1  31 1124   16 359 0.079487179
## 821  0.855609321 0.14439068  one Group1  32 1124   16 358 0.082051282
## 171  0.855266385 0.14473361 zero Group1  32 1123   17 358 0.082051282
## 1468 0.851840647 0.14815935  one Group1  33 1123   17 357 0.084615385
## 146  0.851368462 0.14863154  one Group1  34 1123   17 356 0.087179487
## 251  0.850995004 0.14900500  one Group1  35 1123   17 355 0.089743590
## 1473 0.849786979 0.15021302  one Group1  36 1123   17 354 0.092307692
## 930  0.847701182 0.15229882 zero Group1  36 1122   18 354 0.092307692
## 356  0.845919818 0.15408018  one Group1  37 1122   18 353 0.094871795
## 1363 0.845886219 0.15411378  one Group1  38 1122   18 352 0.097435897
## 190  0.845453053 0.15454695  one Group1  39 1122   18 351 0.100000000
## 372  0.842442818 0.15755718 zero Group1  39 1121   19 351 0.100000000
## 400  0.840211720 0.15978828  one Group1  40 1121   19 350 0.102564103
## 641  0.836973042 0.16302696  one Group1  41 1121   19 349 0.105128205
## 183  0.836460179 0.16353982  one Group1  42 1121   19 348 0.107692308
## 1375 0.836395785 0.16360422 zero Group1  42 1120   20 348 0.107692308
## 1365 0.835128106 0.16487189  one Group1  43 1120   20 347 0.110256410
## 338  0.832665096 0.16733490  one Group1  44 1120   20 346 0.112820513
## 802  0.832484595 0.16751541 zero Group1  44 1119   21 346 0.112820513
## 795  0.832139015 0.16786098 zero Group1  44 1118   22 346 0.112820513
## 370  0.831861277 0.16813872 zero Group1  44 1117   23 346 0.112820513
## 207  0.831696143 0.16830386  one Group1  45 1117   23 345 0.115384615
## 139  0.831420376 0.16857962  one Group1  46 1117   23 344 0.117948718
## 1202 0.831300475 0.16869953 zero Group1  46 1116   24 344 0.117948718
## 18   0.830747517 0.16925248  one Group1  47 1116   24 343 0.120512821
## 1018 0.828609922 0.17139008 zero Group1  47 1115   25 343 0.120512821
## 154  0.827902304 0.17209770  one Group1  48 1115   25 342 0.123076923
## 196  0.824740901 0.17525910  one Group1  49 1115   25 341 0.125641026
## 306  0.824691075 0.17530893  one Group1  50 1115   25 340 0.128205128
## 413  0.824119920 0.17588008  one Group1  51 1115   25 339 0.130769231
## 825  0.821840436 0.17815956  one Group1  52 1115   25 338 0.133333333
## 782  0.821759070 0.17824093 zero Group1  52 1114   26 338 0.133333333
## 451  0.819023808 0.18097619  one Group1  53 1114   26 337 0.135897436
## 1260 0.817390400 0.18260960  one Group1  54 1114   26 336 0.138461538
## 481  0.816734279 0.18326572 zero Group1  54 1113   27 336 0.138461538
## 244  0.815896670 0.18410333  one Group1  55 1113   27 335 0.141025641
## 1179 0.815372477 0.18462752 zero Group1  55 1112   28 335 0.141025641
## 1358 0.815302967 0.18469703  one Group1  56 1112   28 334 0.143589744
## 110  0.813148772 0.18685123  one Group1  57 1112   28 333 0.146153846
## 419  0.813038125 0.18696187  one Group1  58 1112   28 332 0.148717949
## 757  0.812473263 0.18752674  one Group1  59 1112   28 331 0.151282051
## 237  0.812258293 0.18774171  one Group1  60 1112   28 330 0.153846154
## 1217 0.811070055 0.18892994 zero Group1  60 1111   29 330 0.153846154
## 155  0.810658654 0.18934135 zero Group1  60 1110   30 330 0.153846154
## 141  0.810387494 0.18961251  one Group1  61 1110   30 329 0.156410256
## 1107 0.809928418 0.19007158 zero Group1  61 1109   31 329 0.156410256
## 202  0.809917461 0.19008254  one Group1  62 1109   31 328 0.158974359
## 1057 0.809793013 0.19020699  one Group1  63 1109   31 327 0.161538462
## 354  0.809773589 0.19022641  one Group1  64 1109   31 326 0.164102564
## 1319 0.808666493 0.19133351 zero Group1  64 1108   32 326 0.164102564
## 361  0.808603382 0.19139662  one Group1  65 1108   32 325 0.166666667
## 1054 0.806746656 0.19325334  one Group1  66 1108   32 324 0.169230769
## 570  0.805983366 0.19401663 zero Group1  66 1107   33 324 0.169230769
## 650  0.805064139 0.19493586  one Group1  67 1107   33 323 0.171794872
## 247  0.804987419 0.19501258  one Group1  68 1107   33 322 0.174358974
## 352  0.804415296 0.19558470  one Group1  69 1107   33 321 0.176923077
## 1262 0.803827535 0.19617246  one Group1  70 1107   33 320 0.179487179
## 109  0.803765804 0.19623420  one Group1  71 1107   33 319 0.182051282
## 409  0.803649700 0.19635030  one Group1  72 1107   33 318 0.184615385
## 1395 0.800504297 0.19949570 zero Group1  72 1106   34 318 0.184615385
## 351  0.800452280 0.19954772  one Group1  73 1106   34 317 0.187179487
## 980  0.799401689 0.20059831 zero Group1  73 1105   35 317 0.187179487
## 184  0.797318002 0.20268200  one Group1  74 1105   35 316 0.189743590
## 945  0.796531833 0.20346817  one Group1  75 1105   35 315 0.192307692
## 254  0.796521060 0.20347894  one Group1  76 1105   35 314 0.194871795
## 1020 0.795254837 0.20474516 zero Group1  76 1104   36 314 0.194871795
## 1045 0.795144467 0.20485553 zero Group1  76 1103   37 314 0.194871795
## 1068 0.794868212 0.20513179 zero Group1  76 1102   38 314 0.194871795
## 1060 0.794320010 0.20567999  one Group1  77 1102   38 313 0.197435897
## 289  0.792948937 0.20705106  one Group1  78 1102   38 312 0.200000000
## 240  0.792223905 0.20777610  one Group1  79 1102   38 311 0.202564103
## 295  0.788333020 0.21166698  one Group1  80 1102   38 310 0.205128205
## 432  0.786076240 0.21392376 zero Group1  80 1101   39 310 0.205128205
## 1081 0.785249524 0.21475048 zero Group1  80 1100   40 310 0.205128205
## 1066 0.785121816 0.21487818  one Group1  81 1100   40 309 0.207692308
## 193  0.784296760 0.21570324  one Group1  82 1100   40 308 0.210256410
## 1471 0.783936595 0.21606340  one Group1  83 1100   40 307 0.212820513
## 256  0.782696225 0.21730377  one Group1  84 1100   40 306 0.215384615
## 873  0.781725877 0.21827412 zero Group1  84 1099   41 306 0.215384615
## 546  0.781629243 0.21837076  one Group1  85 1099   41 305 0.217948718
## 321  0.781609655 0.21839035 zero Group1  85 1098   42 305 0.217948718
## 730  0.780993910 0.21900609 zero Group1  85 1097   43 305 0.217948718
## 1289 0.780799327 0.21920067 zero Group1  85 1096   44 305 0.217948718
## 771  0.780536488 0.21946351 zero Group1  85 1095   45 305 0.217948718
## 13   0.779464700 0.22053530  one Group1  86 1095   45 304 0.220512821
## 447  0.778088037 0.22191196  one Group1  87 1095   45 303 0.223076923
## 460  0.777715788 0.22228421 zero Group1  87 1094   46 303 0.223076923
## 1373 0.777204993 0.22279501 zero Group1  87 1093   47 303 0.223076923
## 448  0.777176802 0.22282320  one Group1  88 1093   47 302 0.225641026
## 1137 0.776762229 0.22323777 zero Group1  88 1092   48 302 0.225641026
## 212  0.776561878 0.22343812  one Group1  89 1092   48 301 0.228205128
## 200  0.772616275 0.22738373  one Group1  90 1092   48 300 0.230769231
## 731  0.771972809 0.22802719 zero Group1  90 1091   49 300 0.230769231
## 1177 0.771870869 0.22812913 zero Group1  90 1090   50 300 0.230769231
## 1065 0.771817384 0.22818262  one Group1  91 1090   50 299 0.233333333
## 1361 0.770321540 0.22967846  one Group1  92 1090   50 298 0.235897436
## 1362 0.769452835 0.23054716  one Group1  93 1090   50 297 0.238461538
## 72   0.765522187 0.23447781 zero Group1  93 1089   51 297 0.238461538
## 135  0.765291670 0.23470833  one Group1  94 1089   51 296 0.241025641
## 147  0.765090315 0.23490968  one Group1  95 1089   51 295 0.243589744
## 1469 0.764988139 0.23501186  one Group1  96 1089   51 294 0.246153846
## 317  0.764300142 0.23569986  one Group1  97 1089   51 293 0.248717949
## 1443 0.764191247 0.23580875 zero Group1  97 1088   52 293 0.248717949
## 1070 0.762016521 0.23798348 zero Group1  97 1087   53 293 0.248717949
## 1271 0.761786452 0.23821355 zero Group1  97 1086   54 293 0.248717949
## 430  0.760531960 0.23946804 zero Group1  97 1085   55 293 0.248717949
## 470  0.759528455 0.24047154  one Group1  98 1085   55 292 0.251282051
## 346  0.758784496 0.24121550  one Group1  99 1085   55 291 0.253846154
## 258  0.758478460 0.24152154  one Group1 100 1085   55 290 0.256410256
## 748  0.757934928 0.24206507  one Group1 101 1085   55 289 0.258974359
## 894  0.757491367 0.24250863 zero Group1 101 1084   56 289 0.258974359
## 1261 0.756132324 0.24386768  one Group1 102 1084   56 288 0.261538462
## 1074 0.755889981 0.24411002 zero Group1 102 1083   57 288 0.261538462
## 996  0.755274078 0.24472592 zero Group1 102 1082   58 288 0.261538462
## 964  0.753847018 0.24615298 zero Group1 102 1081   59 288 0.261538462
## 464  0.753607275 0.24639272 zero Group1 102 1080   60 288 0.261538462
## 319  0.753370150 0.24662985  one Group1 103 1080   60 287 0.264102564
## 540  0.752915438 0.24708456  one Group1 104 1080   60 286 0.266666667
## 340  0.752444932 0.24755507  one Group1 105 1080   60 285 0.269230769
## 216  0.752185539 0.24781446 zero Group1 105 1079   61 285 0.269230769
## 1064 0.752086047 0.24791395  one Group1 106 1079   61 284 0.271794872
## 1077 0.751849270 0.24815073 zero Group1 106 1078   62 284 0.271794872
## 1301 0.751707634 0.24829237 zero Group1 106 1077   63 284 0.271794872
## 909  0.751071073 0.24892893 zero Group1 106 1076   64 284 0.271794872
## 1292 0.750474172 0.24952583 zero Group1 106 1075   65 284 0.271794872
## 1429 0.750154461 0.24984554 zero Group1 106 1074   66 284 0.271794872
## 40   0.750069086 0.24993091  one Group1 107 1074   66 283 0.274358974
## 1058 0.749551815 0.25044819  one Group1 108 1074   66 282 0.276923077
## 42   0.749249609 0.25075039  one Group1 109 1074   66 281 0.279487179
## 950  0.749038677 0.25096132  one Group1 110 1074   66 280 0.282051282
## 588  0.748953359 0.25104664 zero Group1 110 1073   67 280 0.282051282
## 716  0.748422885 0.25157712 zero Group1 110 1072   68 280 0.282051282
## 349  0.747180317 0.25281968  one Group1 111 1072   68 279 0.284615385
## 567  0.746509045 0.25349096 zero Group1 111 1071   69 279 0.284615385
## 1029 0.746126372 0.25387363 zero Group1 111 1070   70 279 0.284615385
## 468  0.744615705 0.25538429  one Group1 112 1070   70 278 0.287179487
## 160  0.744531100 0.25546890 zero Group1 112 1069   71 278 0.287179487
## 479  0.743734053 0.25626595 zero Group1 112 1068   72 278 0.287179487
## 1466 0.742440771 0.25755923  one Group1 113 1068   72 277 0.289743590
## 61   0.741849505 0.25815049  one Group1 114 1068   72 276 0.292307692
## 62   0.741809078 0.25819092  one Group1 115 1068   72 275 0.294871795
## 111  0.741789691 0.25821031  one Group1 116 1068   72 274 0.297435897
## 1414 0.741543242 0.25845676 zero Group1 116 1067   73 274 0.297435897
## 288  0.741026046 0.25897395  one Group1 117 1067   73 273 0.300000000
## 56   0.739798025 0.26020198  one Group1 118 1067   73 272 0.302564103
## 1432 0.739616459 0.26038354 zero Group1 118 1066   74 272 0.302564103
## 116  0.739329418 0.26067058  one Group1 119 1066   74 271 0.305128205
## 714  0.739316909 0.26068309 zero Group1 119 1065   75 271 0.305128205
## 122  0.738816406 0.26118359  one Group1 120 1065   75 270 0.307692308
## 840  0.738105135 0.26189486 zero Group1 120 1064   76 270 0.307692308
## 1165 0.735580324 0.26441968  one Group1 121 1064   76 269 0.310256410
## 676  0.735255639 0.26474436 zero Group1 121 1063   77 269 0.310256410
## 136  0.733608384 0.26639162  one Group1 122 1063   77 268 0.312820513
## 243  0.733323021 0.26667698  one Group1 123 1063   77 267 0.315384615
## 1063 0.731019723 0.26898028  one Group1 124 1063   77 266 0.317948718
## 259  0.730865525 0.26913448  one Group1 125 1063   77 265 0.320512821
## 170  0.730241925 0.26975807 zero Group1 125 1062   78 265 0.320512821
## 798  0.728920364 0.27107964 zero Group1 125 1061   79 265 0.320512821
## 1470 0.728345510 0.27165449  one Group1 126 1061   79 264 0.323076923
## 253  0.728287217 0.27171278  one Group1 127 1061   79 263 0.325641026
## 132  0.728169098 0.27183090  one Group1 128 1061   79 262 0.328205128
## 1269 0.727892334 0.27210767 zero Group1 128 1060   80 262 0.328205128
## 1364 0.726986622 0.27301338  one Group1 129 1060   80 261 0.330769231
## 1475 0.725341267 0.27465873  one Group1 130 1060   80 260 0.333333333
## 218  0.724592653 0.27540735 zero Group1 130 1059   81 260 0.333333333
## 292  0.724191686 0.27580831  one Group1 131 1059   81 259 0.335897436
## 128  0.723373352 0.27662665  one Group1 132 1059   81 258 0.338461538
## 571  0.722996930 0.27700307 zero Group1 132 1058   82 258 0.338461538
## 889  0.722814524 0.27718548 zero Group1 132 1057   83 258 0.338461538
## 797  0.721989032 0.27801097 zero Group1 132 1056   84 258 0.338461538
## 1367 0.721743635 0.27825636  one Group1 133 1056   84 257 0.341025641
## 629  0.721733988 0.27826601 zero Group1 133 1055   85 257 0.341025641
## 755  0.721459466 0.27854053  one Group1 134 1055   85 256 0.343589744
## 242  0.721339361 0.27866064  one Group1 135 1055   85 255 0.346153846
## 418  0.719785810 0.28021419  one Group1 136 1055   85 254 0.348717949
## 700  0.718854343 0.28114566 zero Group1 136 1054   86 254 0.348717949
## 500  0.718095991 0.28190401 zero Group1 136 1053   87 254 0.348717949
## 1426 0.718030203 0.28196980 zero Group1 136 1052   88 254 0.348717949
## 145  0.716870055 0.28312995  one Group1 137 1052   88 253 0.351282051
## 956  0.715939632 0.28406037  one Group1 138 1052   88 252 0.353846154
## 69   0.715653402 0.28434660  one Group1 139 1052   88 251 0.356410256
## 1232 0.714735879 0.28526412 zero Group1 139 1051   89 251 0.356410256
## 853  0.714319377 0.28568062 zero Group1 139 1050   90 251 0.356410256
## 182  0.713222502 0.28677750  one Group1 140 1050   90 250 0.358974359
## 674  0.712770953 0.28722905 zero Group1 140 1049   91 250 0.358974359
## 1467 0.710361394 0.28963861  one Group1 141 1049   91 249 0.361538462
## 829  0.709115738 0.29088426  one Group1 142 1049   91 248 0.364102564
## 1440 0.708851741 0.29114826 zero Group1 142 1048   92 248 0.364102564
## 395  0.706929930 0.29307007  one Group1 143 1048   92 247 0.366666667
## 568  0.706711366 0.29328863 zero Group1 143 1047   93 247 0.366666667
## 711  0.705570927 0.29442907 zero Group1 143 1046   94 247 0.366666667
## 1474 0.703705250 0.29629475  one Group1 144 1046   94 246 0.369230769
## 895  0.703283706 0.29671629 zero Group1 144 1045   95 246 0.369230769
## 658  0.700788875 0.29921113 zero Group1 144 1044   96 246 0.369230769
## 1521 0.700184665 0.29981534 zero Group1 144 1043   97 246 0.369230769
## 623  0.700096380 0.29990362 zero Group1 144 1042   98 246 0.369230769
## 197  0.698036754 0.30196325  one Group1 145 1042   98 245 0.371794872
## 1449 0.697842502 0.30215750 zero Group1 145 1041   99 245 0.371794872
## 108  0.697275025 0.30272497  one Group1 146 1041   99 244 0.374358974
## 45   0.697193724 0.30280628 zero Group1 146 1040  100 244 0.374358974
## 1062 0.696986055 0.30301394  one Group1 147 1040  100 243 0.376923077
## 517  0.696268438 0.30373156 zero Group1 147 1039  101 243 0.376923077
## 1037 0.695985370 0.30401463 zero Group1 147 1038  102 243 0.376923077
## 1455 0.695555257 0.30444474 zero Group1 147 1037  103 243 0.376923077
## 1402 0.695460066 0.30453993 zero Group1 147 1036  104 243 0.376923077
## 780  0.695243643 0.30475636 zero Group1 147 1035  105 243 0.376923077
## 498  0.694412592 0.30558741 zero Group1 147 1034  106 243 0.376923077
## 310  0.694295523 0.30570448  one Group1 148 1034  106 242 0.379487179
## 1144 0.693458546 0.30654145 zero Group1 148 1033  107 242 0.379487179
## 604  0.693099389 0.30690061 zero Group1 148 1032  108 242 0.379487179
## 1215 0.688746464 0.31125354 zero Group1 148 1031  109 242 0.379487179
## 982  0.688082788 0.31191721 zero Group1 148 1030  110 242 0.379487179
## 1124 0.687776135 0.31222386 zero Group1 148 1029  111 242 0.379487179
## 355  0.686842815 0.31315718  one Group1 149 1029  111 241 0.382051282
## 104  0.686162945 0.31383705  one Group1 150 1029  111 240 0.384615385
## 718  0.685138868 0.31486113 zero Group1 150 1028  112 240 0.384615385
## 126  0.685100057 0.31489994  one Group1 151 1028  112 239 0.387179487
## 610  0.685041071 0.31495893 zero Group1 151 1027  113 239 0.387179487
## 1465 0.684890180 0.31510982  one Group1 152 1027  113 238 0.389743590
## 129  0.684865092 0.31513491  one Group1 153 1027  113 237 0.392307692
## 168  0.683624928 0.31637507 zero Group1 153 1026  114 237 0.392307692
## 598  0.683023297 0.31697670 zero Group1 153 1025  115 237 0.392307692
## 410  0.682557493 0.31744251  one Group1 154 1025  115 236 0.394871795
## 219  0.681634365 0.31836564 zero Group1 154 1024  116 236 0.394871795
## 1138 0.681283781 0.31871622 zero Group1 154 1023  117 236 0.394871795
## 1359 0.680506052 0.31949395  one Group1 155 1023  117 235 0.397435897
## 4    0.679300796 0.32069920  one Group1 156 1023  117 234 0.400000000
## 1166 0.678680830 0.32131917  one Group1 157 1023  117 233 0.402564103
## 1089 0.677772438 0.32222756 zero Group1 157 1022  118 233 0.402564103
## 542  0.677292103 0.32270790  one Group1 158 1022  118 232 0.405128205
## 1338 0.676774997 0.32322500 zero Group1 158 1021  119 232 0.405128205
## 1259 0.674115700 0.32588430  one Group1 159 1021  119 231 0.407692308
## 1069 0.673956135 0.32604386 zero Group1 159 1020  120 231 0.407692308
## 981  0.673827014 0.32617299 zero Group1 159 1019  121 231 0.407692308
## 785  0.673372302 0.32662770 zero Group1 159 1018  122 231 0.407692308
## 509  0.672457338 0.32754266 zero Group1 159 1017  123 231 0.407692308
## 484  0.669717860 0.33028214 zero Group1 159 1016  124 231 0.407692308
## 1100 0.669658363 0.33034164 zero Group1 159 1015  125 231 0.407692308
## 801  0.669028015 0.33097198 zero Group1 159 1014  126 231 0.407692308
## 740  0.668845235 0.33115477 zero Group1 159 1013  127 231 0.407692308
## 939  0.668292985 0.33170701 zero Group1 159 1012  128 231 0.407692308
## 677  0.667143275 0.33285672 zero Group1 159 1011  129 231 0.407692308
## 912  0.666877819 0.33312218 zero Group1 159 1010  130 231 0.407692308
## 313  0.666322478 0.33367752  one Group1 160 1010  130 230 0.410256410
## 324  0.665851693 0.33414831 zero Group1 160 1009  131 230 0.410256410
## 1041 0.665296848 0.33470315 zero Group1 160 1008  132 230 0.410256410
## 137  0.665206098 0.33479390  one Group1 161 1008  132 229 0.412820513
## 79   0.664939785 0.33506022 zero Group1 161 1007  133 229 0.412820513
## 495  0.663631750 0.33636825 zero Group1 161 1006  134 229 0.412820513
## 115  0.662627405 0.33737260  one Group1 162 1006  134 228 0.415384615
## 690  0.662052050 0.33794795 zero Group1 162 1005  135 228 0.415384615
## 353  0.661490778 0.33850922  one Group1 163 1005  135 227 0.417948718
## 236  0.660963522 0.33903648  one Group1 164 1005  135 226 0.420512821
## 545  0.660205270 0.33979473  one Group1 165 1005  135 225 0.423076923
## 1160 0.659972910 0.34002709  one Group1 166 1005  135 224 0.425641026
## 1481 0.658783824 0.34121618 zero Group1 166 1004  136 224 0.425641026
## 291  0.656320152 0.34367985  one Group1 167 1004  136 223 0.428205128
## 151  0.655680018 0.34431998  one Group1 168 1004  136 222 0.430769231
## 662  0.655254069 0.34474593 zero Group1 168 1003  137 222 0.430769231
## 422  0.655229460 0.34477054  one Group1 169 1003  137 221 0.433333333
## 1514 0.654884704 0.34511530 zero Group1 169 1002  138 221 0.433333333
## 1122 0.654248943 0.34575106 zero Group1 169 1001  139 221 0.433333333
## 1476 0.654235172 0.34576483  one Group1 170 1001  139 220 0.435897436
## 186  0.654201359 0.34579864  one Group1 171 1001  139 219 0.438461538
## 307  0.653937157 0.34606284  one Group1 172 1001  139 218 0.441025641
## 204  0.653812456 0.34618754  one Group1 173 1001  139 217 0.443589744
## 535  0.652721216 0.34727878  one Group1 174 1001  139 216 0.446153846
## 854  0.652612784 0.34738722 zero Group1 174 1000  140 216 0.446153846
## 174  0.652551059 0.34744894 zero Group1 174  999  141 216 0.446153846
## 1444 0.651177587 0.34882241 zero Group1 174  998  142 216 0.446153846
## 37   0.649054534 0.35094547  one Group1 175  998  142 215 0.448717949
## 737  0.648536073 0.35146393 zero Group1 175  997  143 215 0.448717949
## 105  0.647611980 0.35238802  one Group1 176  997  143 214 0.451282051
## 34   0.646074998 0.35392500  one Group1 177  997  143 213 0.453846154
## 415  0.645151692 0.35484831  one Group1 178  997  143 212 0.456410256
## 265  0.644480774 0.35551923 zero Group1 178  996  144 212 0.456410256
## 113  0.643898462 0.35610154  one Group1 179  996  144 211 0.458974359
## 1024 0.643704999 0.35629500 zero Group1 179  995  145 211 0.458974359
## 14   0.643067376 0.35693262  one Group1 180  995  145 210 0.461538462
## 1163 0.642623919 0.35737608  one Group1 181  995  145 209 0.464102564
## 1221 0.642513598 0.35748640 zero Group1 181  994  146 209 0.464102564
## 1357 0.641501642 0.35849836  one Group1 182  994  146 208 0.466666667
## 572  0.640530680 0.35946932 zero Group1 182  993  147 208 0.466666667
## 953  0.640274640 0.35972536  one Group1 183  993  147 207 0.469230769
## 647  0.638801588 0.36119841  one Group1 184  993  147 206 0.471794872
## 828  0.638605913 0.36139409  one Group1 185  993  147 205 0.474358974
## 1251 0.637938769 0.36206123  one Group1 186  993  147 204 0.476923077
## 1162 0.637617589 0.36238241  one Group1 187  993  147 203 0.479487179
## 421  0.637494074 0.36250593  one Group1 188  993  147 202 0.482051282
## 766  0.637080932 0.36291907 zero Group1 188  992  148 202 0.482051282
## 804  0.636841547 0.36315845 zero Group1 188  991  149 202 0.482051282
## 1148 0.636567748 0.36343225 zero Group1 188  990  150 202 0.482051282
## 1448 0.635148582 0.36485142 zero Group1 188  989  151 202 0.482051282
## 1325 0.633593135 0.36640687 zero Group1 188  988  152 202 0.482051282
## 875  0.632973063 0.36702694 zero Group1 188  987  153 202 0.482051282
## 33   0.632380502 0.36761950  one Group1 189  987  153 201 0.484615385
## 480  0.631853451 0.36814655 zero Group1 189  986  154 201 0.484615385
## 1504 0.631418215 0.36858178 zero Group1 189  985  155 201 0.484615385
## 402  0.629511577 0.37048842  one Group1 190  985  155 200 0.487179487
## 876  0.629134631 0.37086537 zero Group1 190  984  156 200 0.487179487
## 360  0.628797385 0.37120261  one Group1 191  984  156 199 0.489743590
## 221  0.628643459 0.37135654 zero Group1 191  983  157 199 0.489743590
## 194  0.626932159 0.37306784  one Group1 192  983  157 198 0.492307692
## 589  0.626508448 0.37349155 zero Group1 192  982  158 198 0.492307692
## 203  0.625972510 0.37402749  one Group1 193  982  158 197 0.494871795
## 1268 0.625351467 0.37464853 zero Group1 193  981  159 197 0.494871795
## 1446 0.625210481 0.37478952 zero Group1 193  980  160 197 0.494871795
## 188  0.624682195 0.37531781  one Group1 194  980  160 196 0.497435897
## 245  0.623523062 0.37647694  one Group1 195  980  160 195 0.500000000
## 697  0.622379589 0.37762041 zero Group1 195  979  161 195 0.500000000
## 786  0.620162645 0.37983736 zero Group1 195  978  162 195 0.500000000
## 425  0.619610504 0.38038950  one Group1 196  978  162 194 0.502564103
## 1169 0.617171459 0.38282854  one Group1 197  978  162 193 0.505128205
## 187  0.616867940 0.38313206  one Group1 198  978  162 192 0.507692308
## 19   0.615462346 0.38453765 zero Group1 198  977  163 192 0.507692308
## 486  0.614505824 0.38549418 zero Group1 198  976  164 192 0.507692308
## 856  0.614361441 0.38563856 zero Group1 198  975  165 192 0.507692308
## 445  0.614149264 0.38585074  one Group1 199  975  165 191 0.510256410
## 1036 0.613754998 0.38624500 zero Group1 199  974  166 191 0.510256410
## 879  0.613508880 0.38649112 zero Group1 199  973  167 191 0.510256410
## 1039 0.613361684 0.38663832 zero Group1 199  972  168 191 0.510256410
## 954  0.613100482 0.38689952  one Group1 200  972  168 190 0.512820513
## 1265 0.612953913 0.38704609 zero Group1 200  971  169 190 0.512820513
## 1346 0.612033571 0.38796643 zero Group1 200  970  170 190 0.512820513
## 591  0.611496556 0.38850344 zero Group1 200  969  171 190 0.512820513
## 851  0.610689897 0.38931010 zero Group1 200  968  172 190 0.512820513
## 516  0.609260754 0.39073925 zero Group1 200  967  173 190 0.512820513
## 896  0.609138466 0.39086153 zero Group1 200  966  174 190 0.512820513
## 859  0.608967270 0.39103273 zero Group1 200  965  175 190 0.512820513
## 1055 0.608479919 0.39152008  one Group1 201  965  175 189 0.515384615
## 622  0.608133412 0.39186659 zero Group1 201  964  176 189 0.515384615
## 1171 0.608014002 0.39198600  one Group1 202  964  176 188 0.517948718
## 695  0.607705769 0.39229423 zero Group1 202  963  177 188 0.517948718
## 984  0.607313744 0.39268626 zero Group1 202  962  178 188 0.517948718
## 1447 0.606357424 0.39364258 zero Group1 202  961  179 188 0.517948718
## 652  0.605640698 0.39435930  one Group1 203  961  179 187 0.520512821
## 239  0.605220002 0.39478000  one Group1 204  961  179 186 0.523076923
## 453  0.602146069 0.39785393  one Group1 205  961  179 185 0.525641026
## 929  0.601785251 0.39821475 zero Group1 205  960  180 185 0.525641026
## 1236 0.601766848 0.39823315 zero Group1 205  959  181 185 0.525641026
## 521  0.600976372 0.39902363 zero Group1 205  958  182 185 0.525641026
## 908  0.600811360 0.39918864 zero Group1 205  957  183 185 0.525641026
## 694  0.600704321 0.39929568 zero Group1 205  956  184 185 0.525641026
## 373  0.599287731 0.40071227 zero Group1 205  955  185 185 0.525641026
## 523  0.599163402 0.40083660 zero Group1 205  954  186 185 0.525641026
## 359  0.598197746 0.40180225  one Group1 206  954  186 184 0.528205128
## 1233 0.597820240 0.40217976 zero Group1 206  953  187 184 0.528205128
## 551  0.597468144 0.40253186 zero Group1 206  952  188 184 0.528205128
## 209  0.596969285 0.40303072  one Group1 207  952  188 183 0.530769231
## 235  0.596785268 0.40321473  one Group1 208  952  188 182 0.533333333
## 962  0.596297099 0.40370290 zero Group1 208  951  189 182 0.533333333
## 1043 0.596086583 0.40391342 zero Group1 208  950  190 182 0.533333333
## 206  0.596071398 0.40392860  one Group1 209  950  190 181 0.535897436
## 134  0.595382957 0.40461704  one Group1 210  950  190 180 0.538461538
## 304  0.595098997 0.40490100  one Group1 211  950  190 179 0.541025641
## 318  0.594271273 0.40572873  one Group1 212  950  190 178 0.543589744
## 1451 0.593570791 0.40642921 zero Group1 212  949  191 178 0.543589744
## 411  0.591402268 0.40859773  one Group1 213  949  191 177 0.546153846
## 865  0.589519735 0.41048026 zero Group1 213  948  192 177 0.546153846
## 824  0.587087219 0.41291278  one Group1 214  948  192 176 0.548717949
## 58   0.586417160 0.41358284 zero Group1 214  947  193 176 0.548717949
## 1245 0.586381784 0.41361822 zero Group1 214  946  194 176 0.548717949
## 1461 0.585762137 0.41423786 zero Group1 214  945  195 176 0.548717949
## 323  0.585369191 0.41463081 zero Group1 214  944  196 176 0.548717949
## 87   0.584860168 0.41513983 zero Group1 214  943  197 176 0.548717949
## 350  0.583537893 0.41646211  one Group1 215  943  197 175 0.551282051
## 1235 0.583178471 0.41682153 zero Group1 215  942  198 175 0.551282051
## 893  0.582062869 0.41793713 zero Group1 215  941  199 175 0.551282051
## 1255 0.581519342 0.41848066  one Group1 216  941  199 174 0.553846154
## 680  0.581186671 0.41881333 zero Group1 216  940  200 174 0.553846154
## 897  0.580458901 0.41954110 zero Group1 216  939  201 174 0.553846154
## 1173 0.579547257 0.42045274 zero Group1 216  938  202 174 0.553846154
## 998  0.578744840 0.42125516 zero Group1 216  937  203 174 0.553846154
## 312  0.577719589 0.42228041  one Group1 217  937  203 173 0.556410256
## 751  0.577662157 0.42233784  one Group1 218  937  203 172 0.558974359
## 1500 0.577419290 0.42258071 zero Group1 218  936  204 172 0.558974359
## 268  0.577380012 0.42261999 zero Group1 218  935  205 172 0.558974359
## 1252 0.572850882 0.42714912  one Group1 219  935  205 171 0.561538462
## 717  0.572700023 0.42729998 zero Group1 219  934  206 171 0.561538462
## 693  0.572594919 0.42740508 zero Group1 219  933  207 171 0.561538462
## 1523 0.568552171 0.43144783 zero Group1 219  932  208 171 0.561538462
## 412  0.567727830 0.43227217  one Group1 220  932  208 170 0.564102564
## 857  0.565884561 0.43411544 zero Group1 220  931  209 170 0.564102564
## 592  0.565593714 0.43440629 zero Group1 220  930  210 170 0.564102564
## 605  0.565478601 0.43452140 zero Group1 220  929  211 170 0.564102564
## 995  0.564782679 0.43521732 zero Group1 220  928  212 170 0.564102564
## 1214 0.563435536 0.43656446 zero Group1 220  927  213 170 0.564102564
## 210  0.563125202 0.43687480  one Group1 221  927  213 169 0.566666667
## 586  0.562855502 0.43714450 zero Group1 221  926  214 169 0.566666667
## 1303 0.562500711 0.43749929 zero Group1 221  925  215 169 0.566666667
## 1341 0.561654842 0.43834516 zero Group1 221  924  216 169 0.566666667
## 158  0.561391256 0.43860874 zero Group1 221  923  217 169 0.566666667
## 156  0.560616025 0.43938397 zero Group1 221  922  218 169 0.566666667
## 1267 0.558871051 0.44112895 zero Group1 221  921  219 169 0.566666667
## 499  0.557501321 0.44249868 zero Group1 221  920  220 169 0.566666667
## 1127 0.553536207 0.44646379 zero Group1 221  919  221 169 0.566666667
## 396  0.553480484 0.44651952  one Group1 222  919  221 168 0.569230769
## 1080 0.551877283 0.44812272 zero Group1 222  918  222 168 0.569230769
## 619  0.551718799 0.44828120 zero Group1 222  917  223 168 0.569230769
## 1196 0.551126775 0.44887322 zero Group1 222  916  224 168 0.569230769
## 878  0.549650394 0.45034961 zero Group1 222  915  225 168 0.569230769
## 366  0.548445891 0.45155411  one Group1 223  915  225 167 0.571794872
## 83   0.547049236 0.45295076  one Group1 224  915  225 166 0.574358974
## 800  0.545854391 0.45414561 zero Group1 224  914  226 166 0.574358974
## 978  0.545728599 0.45427140 zero Group1 224  913  227 166 0.574358974
## 1506 0.545611251 0.45438875 zero Group1 224  912  228 166 0.574358974
## 465  0.545596463 0.45440354 zero Group1 224  911  229 166 0.574358974
## 799  0.545396496 0.45460350 zero Group1 224  910  230 166 0.574358974
## 1234 0.544281063 0.45571894 zero Group1 224  909  231 166 0.574358974
## 1308 0.542922994 0.45707701 zero Group1 224  908  232 166 0.574358974
## 302  0.542543205 0.45745679  one Group1 225  908  232 165 0.576923077
## 653  0.541549027 0.45845097  one Group1 226  908  232 164 0.579487179
## 628  0.539759930 0.46024007 zero Group1 226  907  233 164 0.579487179
## 733  0.538868361 0.46113164 zero Group1 226  906  234 164 0.579487179
## 979  0.538553909 0.46144609 zero Group1 226  905  235 164 0.579487179
## 1200 0.537269323 0.46273068 zero Group1 226  904  236 164 0.579487179
## 1258 0.536762810 0.46323719  one Group1 227  904  236 163 0.582051282
## 537  0.536491951 0.46350805  one Group1 228  904  236 162 0.584615385
## 1007 0.535228921 0.46477108 zero Group1 228  903  237 162 0.584615385
## 1347 0.535111191 0.46488881 zero Group1 228  902  238 162 0.584615385
## 966  0.534350578 0.46564942 zero Group1 228  901  239 162 0.584615385
## 300  0.534312962 0.46568704  one Group1 229  901  239 161 0.587179487
## 988  0.533452980 0.46654702 zero Group1 229  900  240 161 0.587179487
## 1052 0.531844072 0.46815593 zero Group1 229  899  241 161 0.587179487
## 655  0.531790239 0.46820976 zero Group1 229  898  242 161 0.587179487
## 201  0.531553954 0.46844605  one Group1 230  898  242 160 0.589743590
## 1147 0.530926251 0.46907375 zero Group1 230  897  243 160 0.589743590
## 1275 0.530534617 0.46946538 zero Group1 230  896  244 160 0.589743590
## 983  0.530040471 0.46995953 zero Group1 230  895  245 160 0.589743590
## 229  0.529786786 0.47021321  one Group1 231  895  245 159 0.592307692
## 863  0.529350862 0.47064914 zero Group1 231  894  246 159 0.592307692
## 452  0.528894440 0.47110556  one Group1 232  894  246 158 0.594871795
## 341  0.528813196 0.47118680  one Group1 233  894  246 157 0.597435897
## 1340 0.528524038 0.47147596 zero Group1 233  893  247 157 0.597435897
## 805  0.527841281 0.47215872 zero Group1 233  892  248 157 0.597435897
## 255  0.526960957 0.47303904  one Group1 234  892  248 156 0.600000000
## 16   0.526362538 0.47363746 zero Group1 234  891  249 156 0.600000000
## 1485 0.526174905 0.47382510 zero Group1 234  890  250 156 0.600000000
## 1342 0.523956282 0.47604372 zero Group1 234  889  251 156 0.600000000
## 1374 0.522373324 0.47762668 zero Group1 234  888  252 156 0.600000000
## 1141 0.522034282 0.47796572 zero Group1 234  887  253 156 0.600000000
## 630  0.521158848 0.47884115 zero Group1 234  886  254 156 0.600000000
## 1027 0.517821332 0.48217867 zero Group1 234  885  255 156 0.600000000
## 1253 0.517523637 0.48247636  one Group1 235  885  255 155 0.602564103
## 963  0.517429781 0.48257022 zero Group1 235  884  256 155 0.602564103
## 1442 0.516994547 0.48300545 zero Group1 235  883  257 155 0.602564103
## 955  0.516173204 0.48382680  one Group1 236  883  257 154 0.605128205
## 1180 0.515758509 0.48424149 zero Group1 236  882  258 154 0.605128205
## 53   0.514970599 0.48502940  one Group1 237  882  258 153 0.607692308
## 322  0.514181678 0.48581832 zero Group1 237  881  259 153 0.607692308
## 1458 0.514024040 0.48597596 zero Group1 237  880  260 153 0.607692308
## 759  0.513841584 0.48615842  one Group1 238  880  260 152 0.610256410
## 1307 0.513674393 0.48632561 zero Group1 238  879  261 152 0.610256410
## 949  0.513213906 0.48678609  one Group1 239  879  261 151 0.612820513
## 519  0.512585520 0.48741448 zero Group1 239  878  262 151 0.612820513
## 1139 0.512514597 0.48748540 zero Group1 239  877  263 151 0.612820513
## 9    0.512412899 0.48758710  one Group1 240  877  263 150 0.615384615
## 198  0.512150249 0.48784975  one Group1 241  877  263 149 0.617948718
## 1184 0.511110869 0.48888913 zero Group1 241  876  264 149 0.617948718
## 118  0.510992260 0.48900774  one Group1 242  876  264 148 0.620512821
## 443  0.510958581 0.48904142  one Group1 243  876  264 147 0.623076923
## 1441 0.510861669 0.48913833 zero Group1 243  875  265 147 0.623076923
## 1222 0.508792937 0.49120706 zero Group1 243  874  266 147 0.623076923
## 461  0.508757358 0.49124264 zero Group1 243  873  267 147 0.623076923
## 406  0.508542391 0.49145761  one Group1 244  873  267 146 0.625641026
## 277  0.508336670 0.49166333 zero Group1 244  872  268 146 0.625641026
## 673  0.507601776 0.49239822 zero Group1 244  871  269 146 0.625641026
## 609  0.507441964 0.49255804 zero Group1 244  870  270 146 0.625641026
## 149  0.507217959 0.49278204  one Group1 245  870  270 145 0.628205128
## 1278 0.505926640 0.49407336 zero Group1 245  869  271 145 0.628205128
## 180  0.503322547 0.49667745 zero Group1 245  868  272 145 0.628205128
## 388  0.503085120 0.49691488 zero Group1 245  867  273 145 0.628205128
## 55   0.502855709 0.49714429  one Group1 246  867  273 144 0.630769231
## 1059 0.502184765 0.49781524  one Group1 247  867  273 143 0.633333333
## 1277 0.502021701 0.49797830 zero Group1 247  866  274 143 0.633333333
## 299  0.502001455 0.49799854  one Group1 248  866  274 142 0.635897436
## 1143 0.501949279 0.49805072 zero Group1 248  865  275 142 0.635897436
## 1306 0.500627928 0.49937207 zero Group1 248  864  276 142 0.635897436
## 1403 0.500449875 0.49955012 zero Group1 248  863  277 142 0.635897436
## 1345 0.499335856 0.50066414 zero Group1 248  862  278 142 0.635897436
## 536  0.499073263 0.50092674  one Group1 249  862  278 141 0.638461538
## 1022 0.498934106 0.50106589 zero Group1 249  861  279 141 0.638461538
## 367  0.498876652 0.50112335  one Group1 250  861  279 140 0.641025641
## 261  0.498446541 0.50155346 zero Group1 250  860  280 140 0.641025641
## 1088 0.497506484 0.50249352 zero Group1 250  859  281 140 0.641025641
## 1155 0.497472102 0.50252790 zero Group1 250  858  282 140 0.641025641
## 293  0.497217048 0.50278295  one Group1 251  858  282 139 0.643589744
## 614  0.495695934 0.50430407 zero Group1 251  857  283 139 0.643589744
## 1172 0.495559582 0.50444042  one Group1 252  857  283 138 0.646153846
## 375  0.495415555 0.50458444 zero Group1 252  856  284 138 0.646153846
## 363  0.495120262 0.50487974  one Group1 253  856  284 137 0.648717949
## 696  0.493619732 0.50638027 zero Group1 253  855  285 137 0.648717949
## 952  0.493470036 0.50652996  one Group1 254  855  285 136 0.651282051
## 17   0.493247664 0.50675234 zero Group1 254  854  286 136 0.651282051
## 914  0.492870896 0.50712910 zero Group1 254  853  287 136 0.651282051
## 2    0.492622957 0.50737704 zero Group1 254  852  288 136 0.651282051
## 1343 0.491760643 0.50823936 zero Group1 254  851  289 136 0.651282051
## 189  0.491622144 0.50837786  one Group1 255  851  289 135 0.653846154
## 417  0.491424390 0.50857561  one Group1 256  851  289 134 0.656410256
## 345  0.491238708 0.50876129  one Group1 257  851  289 133 0.658974359
## 625  0.491196768 0.50880323 zero Group1 257  850  290 133 0.658974359
## 1498 0.490965003 0.50903500 zero Group1 257  849  291 133 0.658974359
## 64   0.490640770 0.50935923  one Group1 258  849  291 132 0.661538462
## 199  0.490502125 0.50949788  one Group1 259  849  291 131 0.664102564
## 1047 0.489951504 0.51004850 zero Group1 259  848  292 131 0.664102564
## 1489 0.489899451 0.51010055 zero Group1 259  847  293 131 0.664102564
## 426  0.488743603 0.51125640  one Group1 260  847  293 130 0.666666667
## 675  0.486754730 0.51324527 zero Group1 260  846  294 130 0.666666667
## 1000 0.486330184 0.51366982 zero Group1 260  845  295 130 0.666666667
## 119  0.486327591 0.51367241  one Group1 261  845  295 129 0.669230769
## 672  0.484366196 0.51563380 zero Group1 261  844  296 129 0.669230769
## 1239 0.482941308 0.51705869 zero Group1 261  843  297 129 0.669230769
## 1486 0.481841244 0.51815876 zero Group1 261  842  298 129 0.669230769
## 1295 0.480793410 0.51920659 zero Group1 261  841  299 129 0.669230769
## 444  0.480267817 0.51973218  one Group1 262  841  299 128 0.671794872
## 1456 0.480194187 0.51980581 zero Group1 262  840  300 128 0.671794872
## 576  0.479701585 0.52029841 zero Group1 262  839  301 128 0.671794872
## 553  0.479369049 0.52063095 zero Group1 262  838  302 128 0.671794872
## 787  0.479192364 0.52080764 zero Group1 262  837  303 128 0.671794872
## 1254 0.478567689 0.52143231  one Group1 263  837  303 127 0.674358974
## 587  0.478530903 0.52146910 zero Group1 263  836  304 127 0.674358974
## 1313 0.476784746 0.52321525 zero Group1 263  835  305 127 0.674358974
## 485  0.476467516 0.52353248 zero Group1 263  834  306 127 0.674358974
## 489  0.476245731 0.52375427 zero Group1 263  833  307 127 0.674358974
## 1264 0.475263160 0.52473684 zero Group1 263  832  308 127 0.674358974
## 1530 0.474865509 0.52513449 zero Group1 263  831  309 127 0.674358974
## 142  0.473010527 0.52698947  one Group1 264  831  309 126 0.676923077
## 163  0.471784787 0.52821521 zero Group1 264  830  310 126 0.676923077
## 1369 0.471392676 0.52860732  one Group1 265  830  310 125 0.679487179
## 467  0.470379516 0.52962048  one Group1 266  830  310 124 0.682051282
## 1126 0.469663431 0.53033657 zero Group1 266  829  311 124 0.682051282
## 1380 0.468184894 0.53181511 zero Group1 266  828  312 124 0.682051282
## 565  0.467693793 0.53230621 zero Group1 266  827  313 124 0.682051282
## 1324 0.467654947 0.53234505 zero Group1 266  826  314 124 0.682051282
## 552  0.466760594 0.53323941 zero Group1 266  825  315 124 0.682051282
## 54   0.466203472 0.53379653  one Group1 267  825  315 123 0.684615385
## 66   0.465424986 0.53457501 zero Group1 267  824  316 123 0.684615385
## 823  0.465176583 0.53482342  one Group1 268  824  316 122 0.687179487
## 1406 0.464866037 0.53513396 zero Group1 268  823  317 122 0.687179487
## 987  0.464153401 0.53584660 zero Group1 268  822  318 122 0.687179487
## 502  0.463513330 0.53648667 zero Group1 268  821  319 122 0.687179487
## 1168 0.462849026 0.53715097  one Group1 269  821  319 121 0.689743590
## 192  0.462099724 0.53790028 zero Group1 269  820  320 121 0.689743590
## 969  0.462096563 0.53790344 zero Group1 269  819  321 121 0.689743590
## 230  0.462035821 0.53796418  one Group1 270  819  321 120 0.692307692
## 382  0.461950224 0.53804978 zero Group1 270  818  322 120 0.692307692
## 931  0.461359310 0.53864069 zero Group1 270  817  323 120 0.692307692
## 369  0.461330721 0.53866928 zero Group1 270  816  324 120 0.692307692
## 1431 0.461181301 0.53881870 zero Group1 270  815  325 120 0.692307692
## 1522 0.460625100 0.53937490 zero Group1 270  814  326 120 0.692307692
## 408  0.459890280 0.54010972  one Group1 271  814  326 119 0.694871795
## 855  0.459167363 0.54083264 zero Group1 271  813  327 119 0.694871795
## 1457 0.458611634 0.54138837 zero Group1 271  812  328 119 0.694871795
## 450  0.458358014 0.54164199  one Group1 272  812  328 118 0.697435897
## 491  0.457982235 0.54201776 zero Group1 272  811  329 118 0.697435897
## 1218 0.457858275 0.54214172 zero Group1 272  810  330 118 0.697435897
## 121  0.457613826 0.54238617 zero Group1 272  809  331 118 0.697435897
## 339  0.456796245 0.54320375  one Group1 273  809  331 117 0.700000000
## 440  0.456167871 0.54383213 zero Group1 273  808  332 117 0.700000000
## 314  0.455676080 0.54432392  one Group1 274  808  332 116 0.702564103
## 1496 0.455449581 0.54455042 zero Group1 274  807  333 116 0.702564103
## 130  0.454232988 0.54576701  one Group1 275  807  333 115 0.705128205
## 913  0.453570806 0.54642919 zero Group1 275  806  334 115 0.705128205
## 401  0.453230931 0.54676907  one Group1 276  806  334 114 0.707692308
## 234  0.450902649 0.54909735  one Group1 277  806  334 113 0.710256410
## 781  0.449751109 0.55024889 zero Group1 277  805  335 113 0.710256410
## 153  0.448105087 0.55189491  one Group1 278  805  335 112 0.712820513
## 222  0.447979779 0.55202022 zero Group1 278  804  336 112 0.712820513
## 541  0.447407356 0.55259264  one Group1 279  804  336 111 0.715384615
## 20   0.445039902 0.55496010  one Group1 280  804  336 110 0.717948718
## 701  0.444310523 0.55568948 zero Group1 280  803  337 110 0.717948718
## 133  0.443556345 0.55644366  one Group1 281  803  337 109 0.720512821
## 691  0.443523428 0.55647657 zero Group1 281  802  338 109 0.720512821
## 611  0.442760870 0.55723913 zero Group1 281  801  339 109 0.720512821
## 749  0.441387663 0.55861234  one Group1 282  801  339 108 0.723076923
## 1150 0.441299413 0.55870059 zero Group1 282  800  340 108 0.723076923
## 1159 0.441048817 0.55895118 zero Group1 282  799  341 108 0.723076923
## 1450 0.440897881 0.55910212 zero Group1 282  798  342 108 0.723076923
## 977  0.440375042 0.55962496 zero Group1 282  797  343 108 0.723076923
## 169  0.440332199 0.55966780 zero Group1 282  796  344 108 0.723076923
## 1028 0.439751747 0.56024825 zero Group1 282  795  345 108 0.723076923
## 290  0.437855857 0.56214414  one Group1 283  795  345 107 0.725641026
## 539  0.434950805 0.56504920  one Group1 284  795  345 106 0.728205128
## 1445 0.434639428 0.56536057 zero Group1 284  794  346 106 0.728205128
## 1228 0.433287043 0.56671296 zero Group1 284  793  347 106 0.728205128
## 1190 0.432987960 0.56701204 zero Group1 284  792  348 106 0.728205128
## 76   0.432360249 0.56763975 zero Group1 284  791  349 106 0.728205128
## 376  0.432090843 0.56790916 zero Group1 284  790  350 106 0.728205128
## 665  0.431882416 0.56811758 zero Group1 284  789  351 106 0.728205128
## 1164 0.431769207 0.56823079  one Group1 285  789  351 105 0.730769231
## 648  0.429160747 0.57083925  one Group1 286  789  351 104 0.733333333
## 646  0.427493505 0.57250650  one Group1 287  789  351 103 0.735897436
## 416  0.426096747 0.57390325  one Group1 288  789  351 102 0.738461538
## 478  0.426075169 0.57392483 zero Group1 288  788  352 102 0.738461538
## 687  0.425693102 0.57430690 zero Group1 288  787  353 102 0.738461538
## 643  0.425325358 0.57467464  one Group1 289  787  353 101 0.741025641
## 1009 0.422656492 0.57734351 zero Group1 289  786  354 101 0.741025641
## 398  0.422599883 0.57740012  one Group1 290  786  354 100 0.743589744
## 852  0.422496533 0.57750347 zero Group1 290  785  355 100 0.743589744
## 1183 0.421837390 0.57816261 zero Group1 290  784  356 100 0.743589744
## 1197 0.419316396 0.58068360 zero Group1 290  783  357 100 0.743589744
## 754  0.418518802 0.58148120  one Group1 291  783  357  99 0.746153846
## 584  0.418125188 0.58187481 zero Group1 291  782  358  99 0.746153846
## 466  0.417708104 0.58229190 zero Group1 291  781  359  99 0.746153846
## 446  0.417657687 0.58234231  one Group1 292  781  359  98 0.748717949
## 347  0.416413367 0.58358663  one Group1 293  781  359  97 0.751282051
## 303  0.416389046 0.58361095  one Group1 294  781  359  96 0.753846154
## 1185 0.416105996 0.58389400 zero Group1 294  780  360  96 0.753846154
## 569  0.416037795 0.58396220 zero Group1 294  779  361  96 0.753846154
## 43   0.415453605 0.58454640  one Group1 295  779  361  95 0.756410256
## 397  0.415415395 0.58458461  one Group1 296  779  361  94 0.758974359
## 1384 0.415122850 0.58487715 zero Group1 296  778  362  94 0.758974359
## 35   0.414926191 0.58507381 zero Group1 296  777  363  94 0.758974359
## 1276 0.414702993 0.58529701 zero Group1 296  776  364  94 0.758974359
## 1033 0.414499948 0.58550005 zero Group1 296  775  365  94 0.758974359
## 1006 0.414076398 0.58592360 zero Group1 296  774  366  94 0.758974359
## 379  0.413860885 0.58613911 zero Group1 296  773  367  94 0.758974359
## 835  0.412797115 0.58720288 zero Group1 296  772  368  94 0.758974359
## 101  0.412742405 0.58725760  one Group1 297  772  368  93 0.761538462
## 997  0.412198228 0.58780177 zero Group1 297  771  369  93 0.761538462
## 1478 0.411522226 0.58847777 zero Group1 297  770  370  93 0.761538462
## 806  0.411289018 0.58871098 zero Group1 297  769  371  93 0.761538462
## 891  0.410466061 0.58953394 zero Group1 297  768  372  93 0.761538462
## 557  0.410194395 0.58980560 zero Group1 297  767  373  93 0.761538462
## 600  0.409356864 0.59064314 zero Group1 297  766  374  93 0.761538462
## 161  0.409176553 0.59082345 zero Group1 297  765  375  93 0.761538462
## 1379 0.407939639 0.59206036 zero Group1 297  764  376  93 0.761538462
## 143  0.407678429 0.59232157 zero Group1 297  763  377  93 0.761538462
## 522  0.407437032 0.59256297 zero Group1 297  762  378  93 0.761538462
## 1423 0.407037605 0.59296240 zero Group1 297  761  379  93 0.761538462
## 28   0.406824057 0.59317594 zero Group1 297  760  380  93 0.761538462
## 577  0.405690567 0.59430943 zero Group1 297  759  381  93 0.761538462
## 947  0.405460464 0.59453954  one Group1 298  759  381  92 0.764102564
## 362  0.405287293 0.59471271  one Group1 299  759  381  91 0.766666667
## 1525 0.405097910 0.59490209 zero Group1 299  758  382  91 0.766666667
## 1353 0.405060151 0.59493985 zero Group1 299  757  383  91 0.766666667
## 1263 0.404857514 0.59514249  one Group1 300  757  383  90 0.769230769
## 315  0.404791872 0.59520813  one Group1 301  757  383  89 0.771794872
## 1216 0.401773851 0.59822615 zero Group1 301  756  384  89 0.771794872
## 297  0.401753471 0.59824653  one Group1 302  756  384  88 0.774358974
## 689  0.401682429 0.59831757 zero Group1 302  755  385  88 0.774358974
## 599  0.401345796 0.59865420 zero Group1 302  754  386  88 0.774358974
## 657  0.401243754 0.59875625 zero Group1 302  753  387  88 0.774358974
## 951  0.401160450 0.59883955  one Group1 303  753  387  87 0.776923077
## 644  0.398999020 0.60100098  one Group1 304  753  387  86 0.779487179
## 745  0.398211489 0.60178851 zero Group1 304  752  388  86 0.779487179
## 494  0.397445284 0.60255472 zero Group1 304  751  389  86 0.779487179
## 1032 0.397404951 0.60259505 zero Group1 304  750  390  86 0.779487179
## 948  0.397156774 0.60284323  one Group1 305  750  390  85 0.782051282
## 830  0.396665865 0.60333413  one Group1 306  750  390  84 0.784615385
## 1284 0.396433373 0.60356663 zero Group1 306  749  391  84 0.784615385
## 22   0.395404714 0.60459529 zero Group1 306  748  392  84 0.784615385
## 807  0.393941520 0.60605848 zero Group1 306  747  393  84 0.784615385
## 1428 0.391710617 0.60828938 zero Group1 306  746  394  84 0.784615385
## 985  0.391346860 0.60865314 zero Group1 306  745  395  84 0.784615385
## 923  0.391005974 0.60899403 zero Group1 306  744  396  84 0.784615385
## 1320 0.390264798 0.60973520 zero Group1 306  743  397  84 0.784615385
## 152  0.389492013 0.61050799  one Group1 307  743  397  83 0.787179487
## 892  0.388646957 0.61135304 zero Group1 307  742  398  83 0.787179487
## 392  0.388487612 0.61151239 zero Group1 307  741  399  83 0.787179487
## 267  0.387680797 0.61231920 zero Group1 307  740  400  83 0.787179487
## 819  0.386498500 0.61350150  one Group1 308  740  400  82 0.789743590
## 57   0.385466086 0.61453391 zero Group1 308  739  401  82 0.789743590
## 1415 0.384697473 0.61530253 zero Group1 308  738  402  82 0.789743590
## 162  0.383959667 0.61604033 zero Group1 308  737  403  82 0.789743590
## 739  0.383794850 0.61620515 zero Group1 308  736  404  82 0.789743590
## 269  0.383601130 0.61639887 zero Group1 308  735  405  82 0.789743590
## 1257 0.383286984 0.61671302  one Group1 309  735  405  81 0.792307692
## 1287 0.383114817 0.61688518 zero Group1 309  734  406  81 0.792307692
## 331  0.383013925 0.61698607 zero Group1 309  733  407  81 0.792307692
## 1008 0.382909634 0.61709037 zero Group1 309  732  408  81 0.792307692
## 1015 0.382834057 0.61716594 zero Group1 309  731  409  81 0.792307692
## 1205 0.381188289 0.61881171 zero Group1 309  730  410  81 0.792307692
## 626  0.381001553 0.61899845 zero Group1 309  729  411  81 0.792307692
## 664  0.380694178 0.61930582 zero Group1 309  728  412  81 0.792307692
## 1199 0.380233217 0.61976678 zero Group1 309  727  413  81 0.792307692
## 590  0.378183340 0.62181666 zero Group1 309  726  414  81 0.792307692
## 1483 0.377584675 0.62241532 zero Group1 309  725  415  81 0.792307692
## 107  0.377042757 0.62295724  one Group1 310  725  415  80 0.794871795
## 1509 0.377024648 0.62297535 zero Group1 310  724  416  80 0.794871795
## 1225 0.376748591 0.62325141 zero Group1 310  723  417  80 0.794871795
## 666  0.376246875 0.62375312 zero Group1 310  722  418  80 0.794871795
## 837  0.375782959 0.62421704 zero Group1 310  721  419  80 0.794871795
## 1291 0.375398233 0.62460177 zero Group1 310  720  420  80 0.794871795
## 434  0.371994216 0.62800578 zero Group1 310  719  421  80 0.794871795
## 358  0.371341670 0.62865833 zero Group1 310  718  422  80 0.794871795
## 262  0.371150058 0.62884994 zero Group1 310  717  423  80 0.794871795
## 273  0.370804250 0.62919575 zero Group1 310  716  424  80 0.794871795
## 663  0.370624811 0.62937519 zero Group1 310  715  425  80 0.794871795
## 1279 0.370451689 0.62954831 zero Group1 310  714  426  80 0.794871795
## 368  0.370299043 0.62970096 zero Group1 310  713  427  80 0.794871795
## 864  0.369144708 0.63085529 zero Group1 310  712  428  80 0.794871795
## 403  0.368815857 0.63118414  one Group1 311  712  428  79 0.797435897
## 1437 0.367956893 0.63204311 zero Group1 311  711  429  79 0.797435897
## 1149 0.366713732 0.63328627 zero Group1 311  710  430  79 0.797435897
## 1208 0.366584894 0.63341511 zero Group1 311  709  431  79 0.797435897
## 784  0.365142116 0.63485788 zero Group1 311  708  432  79 0.797435897
## 274  0.364598900 0.63540110 zero Group1 311  707  433  79 0.797435897
## 272  0.364456655 0.63554335 zero Group1 311  706  434  79 0.797435897
## 337  0.364352557 0.63564744  one Group1 312  706  434  78 0.800000000
## 431  0.364253165 0.63574683 zero Group1 312  705  435  78 0.800000000
## 1121 0.364041326 0.63595867 zero Group1 312  704  436  78 0.800000000
## 1167 0.363192406 0.63680759  one Group1 313  704  436  77 0.802564103
## 527  0.361183850 0.63881615 zero Group1 313  703  437  77 0.802564103
## 1249 0.361025478 0.63897452 zero Group1 313  702  438  77 0.802564103
## 669  0.360164795 0.63983521 zero Group1 313  701  439  77 0.802564103
## 767  0.359698404 0.64030160 zero Group1 313  700  440  77 0.802564103
## 427  0.359396052 0.64060395 zero Group1 313  699  441  77 0.802564103
## 1499 0.358329280 0.64167072 zero Group1 313  698  442  77 0.802564103
## 1368 0.358248941 0.64175106  one Group1 314  698  442  76 0.805128205
## 822  0.358123005 0.64187700  one Group1 315  698  442  75 0.807692308
## 582  0.357716089 0.64228391 zero Group1 315  697  443  75 0.807692308
## 238  0.357639594 0.64236041  one Group1 316  697  443  74 0.810256410
## 890  0.357503229 0.64249677 zero Group1 316  696  444  74 0.810256410
## 1433 0.357094355 0.64290565 zero Group1 316  695  445  74 0.810256410
## 1314 0.355197337 0.64480266 zero Group1 316  694  446  74 0.810256410
## 424  0.354606954 0.64539305  one Group1 317  694  446  73 0.812820513
## 1250 0.354487198 0.64551280 zero Group1 317  693  447  73 0.812820513
## 871  0.354088526 0.64591147 zero Group1 317  692  448  73 0.812820513
## 159  0.354006527 0.64599347 zero Group1 317  691  449  73 0.812820513
## 68   0.353364185 0.64663581  one Group1 318  691  449  72 0.815384615
## 1398 0.352960451 0.64703955 zero Group1 318  690  450  72 0.815384615
## 1464 0.351748332 0.64825167  one Group1 319  690  450  71 0.817948718
## 148  0.351584341 0.64841566  one Group1 320  690  450  70 0.820512821
## 831  0.351465971 0.64853403 zero Group1 320  689  451  70 0.820512821
## 874  0.351308051 0.64869195 zero Group1 320  688  452  70 0.820512821
## 720  0.350182399 0.64981760 zero Group1 320  687  453  70 0.820512821
## 335  0.348603228 0.65139677 zero Group1 320  686  454  70 0.820512821
## 100  0.348515816 0.65148418 zero Group1 320  685  455  70 0.820512821
## 496  0.348303551 0.65169645 zero Group1 320  684  456  70 0.820512821
## 654  0.348157676 0.65184232 zero Group1 320  683  457  70 0.820512821
## 1220 0.348136760 0.65186324 zero Group1 320  682  458  70 0.820512821
## 21   0.347595916 0.65240408 zero Group1 320  681  459  70 0.820512821
## 642  0.347352172 0.65264783  one Group1 321  681  459  69 0.823076923
## 1266 0.347082581 0.65291742 zero Group1 321  680  460  69 0.823076923
## 635  0.346491240 0.65350876 zero Group1 321  679  461  69 0.823076923
## 957  0.346321998 0.65367800  one Group1 322  679  461  68 0.825641026
## 1098 0.345669693 0.65433031 zero Group1 322  678  462  68 0.825641026
## 692  0.345367712 0.65463229 zero Group1 322  677  463  68 0.825641026
## 1518 0.345221414 0.65477859 zero Group1 322  676  464  68 0.825641026
## 713  0.344954172 0.65504583 zero Group1 322  675  465  68 0.825641026
## 332  0.344184820 0.65581518 zero Group1 322  674  466  68 0.825641026
## 986  0.342873051 0.65712695 zero Group1 322  673  467  68 0.825641026
## 645  0.342507904 0.65749210  one Group1 323  673  467  67 0.828205128
## 1439 0.342449966 0.65755003 zero Group1 323  672  468  67 0.828205128
## 404  0.342360901 0.65763910 zero Group1 323  671  469  67 0.828205128
## 1207 0.342112979 0.65788702 zero Group1 323  670  470  67 0.828205128
## 97   0.341695424 0.65830458 zero Group1 323  669  471  67 0.828205128
## 471  0.341428458 0.65857154 zero Group1 323  668  472  67 0.828205128
## 469  0.341038308 0.65896169  one Group1 324  668  472  66 0.830769231
## 925  0.339768019 0.66023198 zero Group1 324  667  473  66 0.830769231
## 63   0.339573926 0.66042607  one Group1 325  667  473  65 0.833333333
## 556  0.338883476 0.66111652 zero Group1 325  666  474  65 0.833333333
## 721  0.338360320 0.66163968 zero Group1 325  665  475  65 0.833333333
## 46   0.337878836 0.66212116 zero Group1 325  664  476  65 0.833333333
## 433  0.336749198 0.66325080 zero Group1 325  663  477  65 0.833333333
## 1194 0.335916652 0.66408335 zero Group1 325  662  478  65 0.833333333
## 220  0.335877580 0.66412242 zero Group1 325  661  479  65 0.833333333
## 932  0.334163259 0.66583674 zero Group1 325  660  480  65 0.833333333
## 601  0.333902306 0.66609769 zero Group1 325  659  481  65 0.833333333
## 791  0.333700305 0.66629970 zero Group1 325  658  482  65 0.833333333
## 25   0.331756440 0.66824356  one Group1 326  658  482  64 0.835897436
## 763  0.331370943 0.66862906 zero Group1 326  657  483  64 0.835897436
## 250  0.331194335 0.66880566 zero Group1 326  656  484  64 0.835897436
## 593  0.330601409 0.66939859 zero Group1 326  655  485  64 0.835897436
## 843  0.329714587 0.67028541 zero Group1 326  654  486  64 0.835897436
## 8    0.329594812 0.67040519  one Group1 327  654  486  63 0.838461538
## 390  0.329341743 0.67065826 zero Group1 327  653  487  63 0.838461538
## 497  0.329132159 0.67086784 zero Group1 327  652  488  63 0.838461538
## 296  0.326851382 0.67314862  one Group1 328  652  488  62 0.841025641
## 399  0.325882007 0.67411799  one Group1 329  652  488  61 0.843589744
## 915  0.325755642 0.67424436 zero Group1 329  651  489  61 0.843589744
## 656  0.325588392 0.67441161 zero Group1 329  650  490  61 0.843589744
## 841  0.325045184 0.67495482 zero Group1 329  649  491  61 0.843589744
## 774  0.324501781 0.67549822 zero Group1 329  648  492  61 0.843589744
## 686  0.322378024 0.67762198 zero Group1 329  647  493  61 0.843589744
## 1502 0.321556540 0.67844346 zero Group1 329  646  494  61 0.843589744
## 1140 0.321310652 0.67868935 zero Group1 329  645  495  61 0.843589744
## 627  0.321080282 0.67891972 zero Group1 329  644  496  61 0.843589744
## 649  0.320641833 0.67935817  one Group1 330  644  496  60 0.846153846
## 1111 0.320422904 0.67957710 zero Group1 330  643  497  60 0.846153846
## 946  0.319173487 0.68082651  one Group1 331  643  497  59 0.848717949
## 48   0.319152033 0.68084797 zero Group1 331  642  498  59 0.848717949
## 393  0.318999916 0.68100008 zero Group1 331  641  499  59 0.848717949
## 1067 0.318690619 0.68130938 zero Group1 331  640  500  59 0.848717949
## 27   0.317642564 0.68235744 zero Group1 331  639  501  59 0.848717949
## 688  0.317340088 0.68265991 zero Group1 331  638  502  59 0.848717949
## 1386 0.317064620 0.68293538 zero Group1 331  637  503  59 0.848717949
## 510  0.316582733 0.68341727 zero Group1 331  636  504  59 0.848717949
## 124  0.315340563 0.68465944  one Group1 332  636  504  58 0.851282051
## 637  0.314998523 0.68500148 zero Group1 332  635  505  58 0.851282051
## 15   0.314311851 0.68568815 zero Group1 332  634  506  58 0.851282051
## 575  0.313313490 0.68668651 zero Group1 332  633  507  58 0.851282051
## 1136 0.313265363 0.68673464 zero Group1 332  632  508  58 0.851282051
## 944  0.313118821 0.68688118 zero Group1 332  631  509  58 0.851282051
## 1436 0.312894020 0.68710598 zero Group1 332  630  510  58 0.851282051
## 32   0.312794049 0.68720595  one Group1 333  630  510  57 0.853846154
## 1238 0.312201824 0.68779818 zero Group1 333  629  511  57 0.853846154
## 834  0.311001557 0.68899844 zero Group1 333  628  512  57 0.853846154
## 1091 0.310604078 0.68939592 zero Group1 333  627  513  57 0.853846154
## 549  0.310574625 0.68942537 zero Group1 333  626  514  57 0.853846154
## 1119 0.308922805 0.69107720 zero Group1 333  625  515  57 0.853846154
## 524  0.308749572 0.69125043 zero Group1 333  624  516  57 0.853846154
## 1186 0.308638246 0.69136175 zero Group1 333  623  517  57 0.853846154
## 86   0.308086886 0.69191311 zero Group1 333  622  518  57 0.853846154
## 880  0.307749628 0.69225037 zero Group1 333  621  519  57 0.853846154
## 167  0.306852348 0.69314765 zero Group1 333  620  520  57 0.853846154
## 327  0.306416510 0.69358349 zero Group1 333  619  521  57 0.853846154
## 1490 0.306393810 0.69360619 zero Group1 333  618  522  57 0.853846154
## 1497 0.305908002 0.69409200 zero Group1 333  617  523  57 0.853846154
## 1001 0.305879483 0.69412052 zero Group1 333  616  524  57 0.853846154
## 102  0.305208916 0.69479108  one Group1 334  616  524  56 0.856410256
## 1355 0.304297508 0.69570249 zero Group1 334  615  525  56 0.856410256
## 910  0.302645676 0.69735432 zero Group1 334  614  526  56 0.856410256
## 1505 0.301428120 0.69857188 zero Group1 334  613  527  56 0.856410256
## 320  0.300257266 0.69974273  one Group1 335  613  527  55 0.858974359
## 1394 0.300160011 0.69983999 zero Group1 335  612  528  55 0.858974359
## 65   0.298550614 0.70144939  one Group1 336  612  528  54 0.861538462
## 114  0.298448800 0.70155120  one Group1 337  612  528  53 0.864102564
## 574  0.298159976 0.70184002 zero Group1 337  611  529  53 0.864102564
## 778  0.297904046 0.70209595 zero Group1 337  610  530  53 0.864102564
## 1151 0.297543957 0.70245604 zero Group1 337  609  531  53 0.864102564
## 374  0.297078016 0.70292198 zero Group1 337  608  532  53 0.864102564
## 965  0.296831927 0.70316807 zero Group1 337  607  533  53 0.864102564
## 99   0.296721271 0.70327873 zero Group1 337  606  534  53 0.864102564
## 1086 0.296662296 0.70333770 zero Group1 337  605  535  53 0.864102564
## 1360 0.296657204 0.70334280  one Group1 338  605  535  52 0.866666667
## 125  0.295775016 0.70422498  one Group1 339  605  535  51 0.869230769
## 613  0.295279492 0.70472051 zero Group1 339  604  536  51 0.869230769
## 607  0.295114116 0.70488588 zero Group1 339  603  537  51 0.869230769
## 756  0.294096569 0.70590343  one Group1 340  603  537  50 0.871794872
## 1142 0.293765728 0.70623427 zero Group1 340  602  538  50 0.871794872
## 621  0.293123623 0.70687638 zero Group1 340  601  539  50 0.871794872
## 679  0.292743692 0.70725631 zero Group1 340  600  540  50 0.871794872
## 214  0.292679080 0.70732092 zero Group1 340  599  541  50 0.871794872
## 252  0.290987775 0.70901223  one Group1 341  599  541  49 0.874358974
## 710  0.290792421 0.70920758 zero Group1 341  598  542  49 0.874358974
## 407  0.289692232 0.71030777  one Group1 342  598  542  48 0.876923077
## 1031 0.289645697 0.71035430 zero Group1 342  597  543  48 0.876923077
## 813  0.289398044 0.71060196 zero Group1 342  596  544  48 0.876923077
## 423  0.288997826 0.71100217  one Group1 343  596  544  47 0.879487179
## 191  0.288895946 0.71110405 zero Group1 343  595  545  47 0.879487179
## 960  0.288556712 0.71144329 zero Group1 343  594  546  47 0.879487179
## 1103 0.288471787 0.71152821 zero Group1 343  593  547  47 0.879487179
## 233  0.288349161 0.71165084  one Group1 344  593  547  46 0.882051282
## 305  0.287411919 0.71258808  one Group1 345  593  547  45 0.884615385
## 457  0.285806876 0.71419312 zero Group1 345  592  548  45 0.884615385
## 1519 0.284498183 0.71550182 zero Group1 345  591  549  45 0.884615385
## 940  0.283875599 0.71612440 zero Group1 345  590  550  45 0.884615385
## 919  0.283595325 0.71640468 zero Group1 345  589  551  45 0.884615385
## 394  0.283452420 0.71654758 zero Group1 345  588  552  45 0.884615385
## 511  0.282598941 0.71740106 zero Group1 345  587  553  45 0.884615385
## 456  0.282439198 0.71756080 zero Group1 345  586  554  45 0.884615385
## 12   0.280203829 0.71979617  one Group1 346  586  554  44 0.887179487
## 429  0.279875306 0.72012469 zero Group1 346  585  555  44 0.887179487
## 773  0.279657640 0.72034236 zero Group1 346  584  556  44 0.887179487
## 615  0.279620845 0.72037915 zero Group1 346  583  557  44 0.887179487
## 1108 0.279596378 0.72040362 zero Group1 346  582  558  44 0.887179487
## 683  0.279387600 0.72061240 zero Group1 346  581  559  44 0.887179487
## 1391 0.279240892 0.72075911 zero Group1 346  580  560  44 0.887179487
## 1246 0.278976039 0.72102396 zero Group1 346  579  561  44 0.887179487
## 608  0.278262954 0.72173705 zero Group1 346  578  562  44 0.887179487
## 260  0.277740609 0.72225939  one Group1 347  578  562  43 0.889743590
## 651  0.277291015 0.72270898  one Group1 348  578  562  42 0.892307692
## 103  0.277252699 0.72274730 zero Group1 348  577  563  42 0.892307692
## 849  0.277215490 0.72278451 zero Group1 348  576  564  42 0.892307692
## 1333 0.276348201 0.72365180 zero Group1 348  575  565  42 0.892307692
## 7    0.276191064 0.72380894 zero Group1 348  574  566  42 0.892307692
## 1114 0.275353469 0.72464653 zero Group1 348  573  567  42 0.892307692
## 547  0.275212618 0.72478738  one Group1 349  573  567  41 0.894871795
## 386  0.274785645 0.72521436 zero Group1 349  572  568  41 0.894871795
## 671  0.274422061 0.72557794 zero Group1 349  571  569  41 0.894871795
## 1513 0.273929140 0.72607086 zero Group1 349  570  570  41 0.894871795
## 241  0.271880514 0.72811949  one Group1 350  570  570  40 0.897435897
## 636  0.270813272 0.72918673 zero Group1 350  569  571  40 0.897435897
## 1206 0.270519803 0.72948020 zero Group1 350  568  572  40 0.897435897
## 901  0.270473151 0.72952685 zero Group1 350  567  573  40 0.897435897
## 475  0.270116052 0.72988395 zero Group1 350  566  574  40 0.897435897
## 325  0.269544228 0.73045577 zero Group1 350  565  575  40 0.897435897
## 217  0.269051297 0.73094870 zero Group1 350  564  576  40 0.897435897
## 385  0.268892349 0.73110765 zero Group1 350  563  577  40 0.897435897
## 477  0.268014993 0.73198501 zero Group1 350  562  578  40 0.897435897
## 365  0.267706717 0.73229328  one Group1 351  562  578  39 0.900000000
## 492  0.267426094 0.73257391 zero Group1 351  561  579  39 0.900000000
## 1072 0.267343944 0.73265606 zero Group1 351  560  580  39 0.900000000
## 1182 0.266411490 0.73358851 zero Group1 351  559  581  39 0.900000000
## 612  0.265535676 0.73446432 zero Group1 351  558  582  39 0.900000000
## 1507 0.264597003 0.73540300 zero Group1 351  557  583  39 0.900000000
## 999  0.264471132 0.73552887 zero Group1 351  556  584  39 0.900000000
## 1389 0.263763427 0.73623657 zero Group1 351  555  585  39 0.900000000
## 1040 0.263540064 0.73645994 zero Group1 351  554  586  39 0.900000000
## 301  0.261589554 0.73841045  one Group1 352  554  586  38 0.902564103
## 1524 0.261263543 0.73873646 zero Group1 352  553  587  38 0.902564103
## 1132 0.260484230 0.73951577 zero Group1 352  552  588  38 0.902564103
## 603  0.260196182 0.73980382 zero Group1 352  551  589  38 0.902564103
## 30   0.260182924 0.73981708 zero Group1 352  550  590  38 0.902564103
## 228  0.259691408 0.74030859 zero Group1 352  549  591  38 0.902564103
## 533  0.259196211 0.74080379 zero Group1 352  548  592  38 0.902564103
## 364  0.259076381 0.74092362  one Group1 353  548  592  37 0.905128205
## 1023 0.259059645 0.74094035 zero Group1 353  547  593  37 0.905128205
## 420  0.258343648 0.74165635  one Group1 354  547  593  36 0.907692308
## 1188 0.257985696 0.74201430 zero Group1 354  546  594  36 0.907692308
## 1092 0.257967645 0.74203236 zero Group1 354  545  595  36 0.907692308
## 1016 0.257817007 0.74218299 zero Group1 354  544  596  36 0.907692308
## 1378 0.257320965 0.74267903 zero Group1 354  543  597  36 0.907692308
## 458  0.256561552 0.74343845 zero Group1 354  542  598  36 0.907692308
## 634  0.255962190 0.74403781 zero Group1 354  541  599  36 0.907692308
## 1213 0.255245351 0.74475465 zero Group1 354  540  600  36 0.907692308
## 1400 0.254616469 0.74538353 zero Group1 354  539  601  36 0.907692308
## 178  0.254591780 0.74540822 zero Group1 354  538  602  36 0.907692308
## 123  0.253667776 0.74633222  one Group1 355  538  602  35 0.910256410
## 172  0.253473807 0.74652619 zero Group1 355  537  603  35 0.910256410
## 1312 0.253223321 0.74677668 zero Group1 355  536  604  35 0.910256410
## 1491 0.252827077 0.74717292 zero Group1 355  535  605  35 0.910256410
## 1517 0.252210025 0.74778997 zero Group1 355  534  606  35 0.910256410
## 1125 0.251089484 0.74891052 zero Group1 355  533  607  35 0.910256410
## 1174 0.250081236 0.74991876 zero Group1 355  532  608  35 0.910256410
## 348  0.249121600 0.75087840  one Group1 356  532  608  34 0.912820513
## 504  0.248914872 0.75108513 zero Group1 356  531  609  34 0.912820513
## 1014 0.248469044 0.75153096 zero Group1 356  530  610  34 0.912820513
## 1226 0.248455562 0.75154444 zero Group1 356  529  611  34 0.912820513
## 1434 0.248177707 0.75182229 zero Group1 356  528  612  34 0.912820513
## 1118 0.247754003 0.75224600 zero Group1 356  527  613  34 0.912820513
## 1087 0.246832941 0.75316706 zero Group1 356  526  614  34 0.912820513
## 280  0.245901998 0.75409800 zero Group1 356  525  615  34 0.912820513
## 704  0.245789207 0.75421079 zero Group1 356  524  616  34 0.912820513
## 1161 0.245636699 0.75436330  one Group1 357  524  616  33 0.915384615
## 91   0.245464927 0.75453507 zero Group1 357  523  617  33 0.915384615
## 788  0.245385753 0.75461425 zero Group1 357  522  618  33 0.915384615
## 1105 0.245336592 0.75466341 zero Group1 357  521  619  33 0.915384615
## 1176 0.244864629 0.75513537 zero Group1 357  520  620  33 0.915384615
## 39   0.244785068 0.75521493  one Group1 358  520  620  32 0.917948718
## 902  0.244421476 0.75557852 zero Group1 358  519  621  32 0.917948718
## 958  0.244119647 0.75588035 zero Group1 358  518  622  32 0.917948718
## 41   0.243900983 0.75609902  one Group1 359  518  622  31 0.920512821
## 85   0.243773011 0.75622699 zero Group1 359  517  623  31 0.920512821
## 227  0.243351812 0.75664819 zero Group1 359  516  624  31 0.920512821
## 26   0.241748083 0.75825192 zero Group1 359  515  625  31 0.920512821
## 81   0.241196014 0.75880399 zero Group1 359  514  626  31 0.920512821
## 1377 0.240585487 0.75941451 zero Group1 359  513  627  31 0.920512821
## 719  0.240560252 0.75943975 zero Group1 359  512  628  31 0.920512821
## 764  0.239298560 0.76070144 zero Group1 359  511  629  31 0.920512821
## 1042 0.238412648 0.76158735 zero Group1 359  510  630  31 0.920512821
## 877  0.238017326 0.76198267 zero Group1 359  509  631  31 0.920512821
## 1326 0.237034259 0.76296574 zero Group1 359  508  632  31 0.920512821
## 1305 0.236555455 0.76344454 zero Group1 359  507  633  31 0.920512821
## 514  0.236451440 0.76354856 zero Group1 359  506  634  31 0.920512821
## 144  0.236358020 0.76364198  one Group1 360  506  634  30 0.923076923
## 1175 0.235414739 0.76458526 zero Group1 360  505  635  30 0.923076923
## 1129 0.235273376 0.76472662 zero Group1 360  504  636  30 0.923076923
## 1511 0.235214592 0.76478541 zero Group1 360  503  637  30 0.923076923
## 581  0.235197793 0.76480221 zero Group1 360  502  638  30 0.923076923
## 887  0.234821174 0.76517883 zero Group1 360  501  639  30 0.923076923
## 1329 0.234492567 0.76550743 zero Group1 360  500  640  30 0.923076923
## 558  0.234222983 0.76577702 zero Group1 360  499  641  30 0.923076923
## 38   0.233657770 0.76634223  one Group1 361  499  641  29 0.925641026
## 326  0.233633020 0.76636698 zero Group1 361  498  642  29 0.925641026
## 1330 0.233622098 0.76637790 zero Group1 361  497  643  29 0.925641026
## 1438 0.233558002 0.76644200 zero Group1 361  496  644  29 0.925641026
## 762  0.233466613 0.76653339 zero Group1 361  495  645  29 0.925641026
## 112  0.233330216 0.76666978  one Group1 362  495  645  28 0.928205128
## 1116 0.232795378 0.76720462 zero Group1 362  494  646  28 0.928205128
## 1318 0.232578066 0.76742193 zero Group1 362  493  647  28 0.928205128
## 1017 0.231893744 0.76810626 zero Group1 362  492  648  28 0.928205128
## 328  0.231810117 0.76818988 zero Group1 362  491  649  28 0.928205128
## 1520 0.231663868 0.76833613 zero Group1 362  490  650  28 0.928205128
## 1418 0.230646542 0.76935346 zero Group1 362  489  651  28 0.928205128
## 534  0.230487640 0.76951236 zero Group1 362  488  652  28 0.928205128
## 1430 0.229906914 0.77009309 zero Group1 362  487  653  28 0.928205128
## 579  0.229775747 0.77022425 zero Group1 362  486  654  28 0.928205128
## 1422 0.229768431 0.77023157 zero Group1 362  485  655  28 0.928205128
## 387  0.229575642 0.77042436 zero Group1 362  484  656  28 0.928205128
## 1421 0.229325545 0.77067446 zero Group1 362  483  657  28 0.928205128
## 1104 0.227789089 0.77221091 zero Group1 362  482  658  28 0.928205128
## 678  0.227593749 0.77240625 zero Group1 362  481  659  28 0.928205128
## 1302 0.227040904 0.77295910 zero Group1 362  480  660  28 0.928205128
## 1273 0.226912564 0.77308744 zero Group1 362  479  661  28 0.928205128
## 903  0.226756214 0.77324379 zero Group1 362  478  662  28 0.928205128
## 377  0.226700686 0.77329931 zero Group1 362  477  663  28 0.928205128
## 71   0.226614114 0.77338589  one Group1 363  477  663  27 0.930769231
## 1231 0.226515566 0.77348443 zero Group1 363  476  664  27 0.930769231
## 1229 0.226332041 0.77366796 zero Group1 363  475  665  27 0.930769231
## 1416 0.225823296 0.77417670 zero Group1 363  474  666  27 0.930769231
## 1094 0.225013983 0.77498602 zero Group1 363  473  667  27 0.930769231
## 459  0.224787463 0.77521254 zero Group1 363  472  668  27 0.930769231
## 94   0.224144236 0.77585576 zero Group1 363  471  669  27 0.930769231
## 1073 0.221938264 0.77806174 zero Group1 363  470  670  27 0.930769231
## 1283 0.221751032 0.77824897 zero Group1 363  469  671  27 0.930769231
## 616  0.221539214 0.77846079 zero Group1 363  468  672  27 0.930769231
## 181  0.220753777 0.77924622  one Group1 364  468  672  26 0.933333333
## 508  0.220743058 0.77925694 zero Group1 364  467  673  26 0.933333333
## 92   0.219776426 0.78022357 zero Group1 364  466  674  26 0.933333333
## 1110 0.219378356 0.78062164 zero Group1 364  465  675  26 0.933333333
## 1315 0.218638360 0.78136164 zero Group1 364  464  676  26 0.933333333
## 975  0.218625978 0.78137402 zero Group1 364  463  677  26 0.933333333
## 488  0.217383366 0.78261663 zero Group1 364  462  678  26 0.933333333
## 49   0.217342552 0.78265745  one Group1 365  462  678  25 0.935897436
## 858  0.217217057 0.78278294 zero Group1 365  461  679  25 0.935897436
## 224  0.216526171 0.78347383 zero Group1 365  460  680  25 0.935897436
## 706  0.216511613 0.78348839 zero Group1 365  459  681  25 0.935897436
## 842  0.215555691 0.78444431 zero Group1 365  458  682  25 0.935897436
## 1282 0.214409646 0.78559035 zero Group1 365  457  683  25 0.935897436
## 838  0.214311034 0.78568897 zero Group1 365  456  684  25 0.935897436
## 544  0.213502660 0.78649734  one Group1 366  456  684  24 0.938461538
## 1247 0.213125503 0.78687450 zero Group1 366  455  685  24 0.938461538
## 1304 0.212182147 0.78781785 zero Group1 366  454  686  24 0.938461538
## 333  0.211851304 0.78814870 zero Group1 366  453  687  24 0.938461538
## 378  0.211334929 0.78866507 zero Group1 366  452  688  24 0.938461538
## 24   0.211307620 0.78869238 zero Group1 366  451  689  24 0.938461538
## 699  0.210363588 0.78963641 zero Group1 366  450  690  24 0.938461538
## 922  0.208615378 0.79138462 zero Group1 366  449  691  24 0.938461538
## 82   0.208292767 0.79170723  one Group1 367  449  691  23 0.941025641
## 1237 0.207810856 0.79218914 zero Group1 367  448  692  23 0.941025641
## 1101 0.207779666 0.79222033 zero Group1 367  447  693  23 0.941025641
## 309  0.207226909 0.79277309  one Group1 368  447  693  22 0.943589744
## 286  0.206377077 0.79362292 zero Group1 368  446  694  22 0.943589744
## 761  0.205848239 0.79415176 zero Group1 368  445  695  22 0.943589744
## 1133 0.205112361 0.79488764 zero Group1 368  444  696  22 0.943589744
## 682  0.204229503 0.79577050 zero Group1 368  443  697  22 0.943589744
## 84   0.204040632 0.79595937 zero Group1 368  442  698  22 0.943589744
## 383  0.204035545 0.79596445 zero Group1 368  441  699  22 0.943589744
## 1038 0.203877934 0.79612207 zero Group1 368  440  700  22 0.943589744
## 70   0.203596228 0.79640377  one Group1 369  440  700  21 0.946153846
## 472  0.203524832 0.79647517 zero Group1 369  439  701  21 0.946153846
## 1272 0.203056114 0.79694389 zero Group1 369  438  702  21 0.946153846
## 1102 0.202613338 0.79738666 zero Group1 369  437  703  21 0.946153846
## 506  0.202315254 0.79768475 zero Group1 369  436  704  21 0.946153846
## 1512 0.202165869 0.79783413 zero Group1 369  435  705  21 0.946153846
## 520  0.201890934 0.79810907 zero Group1 369  434  706  21 0.946153846
## 920  0.201887873 0.79811213 zero Group1 369  433  707  21 0.946153846
## 712  0.201068568 0.79893143 zero Group1 369  432  708  21 0.946153846
## 271  0.201009721 0.79899028 zero Group1 369  431  709  21 0.946153846
## 832  0.200950770 0.79904923 zero Group1 369  430  710  21 0.946153846
## 1056 0.200267980 0.79973202  one Group1 370  430  710  20 0.948717949
## 1413 0.199909679 0.80009032 zero Group1 370  429  711  20 0.948717949
## 503  0.199655279 0.80034472 zero Group1 370  428  712  20 0.948717949
## 1424 0.198236660 0.80176334 zero Group1 370  427  713  20 0.948717949
## 1134 0.197176338 0.80282366 zero Group1 370  426  714  20 0.948717949
## 1356 0.197153251 0.80284675 zero Group1 370  425  715  20 0.948717949
## 29   0.196081405 0.80391860 zero Group1 370  424  716  20 0.948717949
## 164  0.195601177 0.80439882 zero Group1 370  423  717  20 0.948717949
## 95   0.194958974 0.80504103 zero Group1 370  422  718  20 0.948717949
## 1417 0.194226151 0.80577385 zero Group1 370  421  719  20 0.948717949
## 1339 0.194153863 0.80584614 zero Group1 370  420  720  20 0.948717949
## 93   0.193799788 0.80620021 zero Group1 370  419  721  20 0.948717949
## 513  0.193540518 0.80645948 zero Group1 370  418  722  20 0.948717949
## 968  0.193087065 0.80691293 zero Group1 370  417  723  20 0.948717949
## 884  0.193055060 0.80694494 zero Group1 370  416  724  20 0.948717949
## 555  0.191460829 0.80853917 zero Group1 370  415  725  20 0.948717949
## 505  0.191441798 0.80855820 zero Group1 370  414  726  20 0.948717949
## 934  0.190988282 0.80901172 zero Group1 370  413  727  20 0.948717949
## 850  0.190002523 0.80999748 zero Group1 370  412  728  20 0.948717949
## 1335 0.189069036 0.81093096 zero Group1 370  411  729  20 0.948717949
## 213  0.188647547 0.81135245 zero Group1 370  410  730  20 0.948717949
## 992  0.188055702 0.81194430 zero Group1 370  409  731  20 0.948717949
## 1227 0.187639357 0.81236064 zero Group1 370  408  732  20 0.948717949
## 817  0.187427553 0.81257245 zero Group1 370  407  733  20 0.948717949
## 1405 0.187405084 0.81259492 zero Group1 370  406  734  20 0.948717949
## 732  0.186414040 0.81358596 zero Group1 370  405  735  20 0.948717949
## 811  0.185621135 0.81437887 zero Group1 370  404  736  20 0.948717949
## 583  0.185531364 0.81446864 zero Group1 370  403  737  20 0.948717949
## 90   0.184745765 0.81525423 zero Group1 370  402  738  20 0.948717949
## 51   0.184035473 0.81596453 zero Group1 370  401  739  20 0.948717949
## 753  0.184017639 0.81598236  one Group1 371  401  739  19 0.951282051
## 1484 0.183655947 0.81634405 zero Group1 371  400  740  19 0.951282051
## 742  0.183493822 0.81650618 zero Group1 371  399  741  19 0.951282051
## 1493 0.182973945 0.81702606 zero Group1 371  398  742  19 0.951282051
## 1297 0.181645628 0.81835437 zero Group1 371  397  743  19 0.951282051
## 311  0.181299297 0.81870070  one Group1 372  397  743  18 0.953846154
## 1453 0.181223400 0.81877660 zero Group1 372  396  744  18 0.953846154
## 157  0.180812157 0.81918784 zero Group1 372  395  745  18 0.953846154
## 1298 0.178951261 0.82104874 zero Group1 372  394  746  18 0.953846154
## 1192 0.178589352 0.82141065 zero Group1 372  393  747  18 0.953846154
## 959  0.178384689 0.82161531 zero Group1 372  392  748  18 0.953846154
## 1071 0.177691783 0.82230822 zero Group1 372  391  749  18 0.953846154
## 926  0.176955552 0.82304445 zero Group1 372  390  750  18 0.953846154
## 166  0.176722151 0.82327785 zero Group1 372  389  751  18 0.953846154
## 933  0.176390546 0.82360945 zero Group1 372  388  752  18 0.953846154
## 437  0.176317609 0.82368239 zero Group1 372  387  753  18 0.953846154
## 1010 0.175919491 0.82408051 zero Group1 372  386  754  18 0.953846154
## 1407 0.175661295 0.82433871 zero Group1 372  385  755  18 0.953846154
## 88   0.175059621 0.82494038 zero Group1 372  384  756  18 0.953846154
## 31   0.174322154 0.82567785 zero Group1 372  383  757  18 0.953846154
## 1515 0.174309199 0.82569080 zero Group1 372  382  758  18 0.953846154
## 74   0.174055748 0.82594425 zero Group1 372  381  759  18 0.953846154
## 1198 0.173197328 0.82680267 zero Group1 372  380  760  18 0.953846154
## 515  0.172056134 0.82794387 zero Group1 372  379  761  18 0.953846154
## 765  0.171860148 0.82813985 zero Group1 372  378  762  18 0.953846154
## 741  0.169761239 0.83023876 zero Group1 372  377  763  18 0.953846154
## 888  0.169684763 0.83031524 zero Group1 372  376  764  18 0.953846154
## 580  0.169616336 0.83038366 zero Group1 372  375  765  18 0.953846154
## 344  0.167250402 0.83274960  one Group1 373  375  765  17 0.956410256
## 620  0.164318515 0.83568149 zero Group1 373  374  766  17 0.956410256
## 1372 0.164153577 0.83584642 zero Group1 373  373  767  17 0.956410256
## 1153 0.163818493 0.83618151 zero Group1 373  372  768  17 0.956410256
## 1131 0.163807341 0.83619266 zero Group1 373  371  769  17 0.956410256
## 1296 0.163477374 0.83652263 zero Group1 373  370  770  17 0.956410256
## 1109 0.162830394 0.83716961 zero Group1 373  369  771  17 0.956410256
## 1112 0.162646845 0.83735316 zero Group1 373  368  772  17 0.956410256
## 1241 0.162476649 0.83752335 zero Group1 373  367  773  17 0.956410256
## 1495 0.162350678 0.83764932 zero Group1 373  366  774  17 0.956410256
## 1097 0.162250846 0.83774915 zero Group1 373  365  775  17 0.956410256
## 316  0.162026534 0.83797347  one Group1 374  365  775  16 0.958974359
## 77   0.161761135 0.83823886 zero Group1 374  364  776  16 0.958974359
## 961  0.160082216 0.83991778 zero Group1 374  363  777  16 0.958974359
## 518  0.159753886 0.84024611 zero Group1 374  362  778  16 0.958974359
## 1388 0.157913174 0.84208683 zero Group1 374  361  779  16 0.958974359
## 1075 0.157813274 0.84218673 zero Group1 374  360  780  16 0.958974359
## 435  0.157333697 0.84266630 zero Group1 374  359  781  16 0.958974359
## 1488 0.156440327 0.84355967 zero Group1 374  358  782  16 0.958974359
## 1487 0.156299016 0.84370098 zero Group1 374  357  783  16 0.958974359
## 550  0.156035915 0.84396409 zero Group1 374  356  784  16 0.958974359
## 59   0.155948767 0.84405123 zero Group1 374  355  785  16 0.958974359
## 1480 0.155895831 0.84410417 zero Group1 374  354  786  16 0.958974359
## 1327 0.155743436 0.84425656 zero Group1 374  353  787  16 0.958974359
## 1331 0.155691164 0.84430884 zero Group1 374  352  788  16 0.958974359
## 758  0.155456981 0.84454302  one Group1 375  352  788  15 0.961538462
## 916  0.154509497 0.84549050 zero Group1 375  351  789  15 0.961538462
## 78   0.154102911 0.84589709 zero Group1 375  350  790  15 0.961538462
## 1099 0.153466605 0.84653339 zero Group1 375  349  791  15 0.961538462
## 900  0.153065958 0.84693404 zero Group1 375  348  792  15 0.961538462
## 231  0.152297480 0.84770252  one Group1 376  348  792  14 0.964102564
## 1288 0.152085485 0.84791452 zero Group1 376  347  793  14 0.964102564
## 283  0.152064725 0.84793528 zero Group1 376  346  794  14 0.964102564
## 1004 0.151616650 0.84838335 zero Group1 376  345  795  14 0.964102564
## 602  0.151554337 0.84844566 zero Group1 376  344  796  14 0.964102564
## 1479 0.150454531 0.84954547 zero Group1 376  343  797  14 0.964102564
## 1366 0.150032403 0.84996760  one Group1 377  343  797  13 0.966666667
## 918  0.148725328 0.85127467 zero Group1 377  342  798  13 0.966666667
## 735  0.148647588 0.85135241 zero Group1 377  341  799  13 0.966666667
## 36   0.147442019 0.85255798 zero Group1 377  340  800  13 0.966666667
## 371  0.145790622 0.85420938 zero Group1 377  339  801  13 0.966666667
## 1334 0.144200829 0.85579917 zero Group1 377  338  802  13 0.966666667
## 3    0.143762530 0.85623747 zero Group1 377  337  803  13 0.966666667
## 750  0.143430909 0.85656909  one Group1 378  337  803  12 0.969230769
## 275  0.141364191 0.85863581 zero Group1 378  336  804  12 0.969230769
## 1408 0.141341375 0.85865862 zero Group1 378  335  805  12 0.969230769
## 330  0.141020033 0.85897997 zero Group1 378  334  806  12 0.969230769
## 381  0.140112125 0.85988788 zero Group1 378  333  807  12 0.969230769
## 585  0.138980447 0.86101955 zero Group1 378  332  808  12 0.969230769
## 512  0.138893755 0.86110625 zero Group1 378  331  809  12 0.969230769
## 454  0.138484155 0.86151585  one Group1 379  331  809  11 0.971794872
## 507  0.137107543 0.86289246 zero Group1 379  330  810  11 0.971794872
## 1106 0.136902587 0.86309741 zero Group1 379  329  811  11 0.971794872
## 1026 0.136773345 0.86322665 zero Group1 379  328  812  11 0.971794872
## 736  0.135605460 0.86439454 zero Group1 379  327  813  11 0.971794872
## 1382 0.134544857 0.86545514 zero Group1 379  326  814  11 0.971794872
## 1411 0.134231370 0.86576863 zero Group1 379  325  815  11 0.971794872
## 993  0.132647964 0.86735204 zero Group1 379  324  816  11 0.971794872
## 75   0.131965816 0.86803418 zero Group1 379  323  817  11 0.971794872
## 561  0.131625707 0.86837429 zero Group1 379  322  818  11 0.971794872
## 1328 0.131368840 0.86863116 zero Group1 379  321  819  11 0.971794872
## 1090 0.130355637 0.86964436 zero Group1 379  320  820  11 0.971794872
## 225  0.129374414 0.87062559 zero Group1 379  319  821  11 0.971794872
## 1311 0.128304732 0.87169527 zero Group1 379  318  822  11 0.971794872
## 483  0.128188906 0.87181109 zero Group1 379  317  823  11 0.971794872
## 405  0.127459553 0.87254045 zero Group1 379  316  824  11 0.971794872
## 617  0.126791075 0.87320893 zero Group1 379  315  825  11 0.971794872
## 907  0.126053629 0.87394637 zero Group1 379  314  826  11 0.971794872
## 684  0.125531959 0.87446804 zero Group1 379  313  827  11 0.971794872
## 927  0.124903151 0.87509685 zero Group1 379  312  828  11 0.971794872
## 685  0.124798711 0.87520129 zero Group1 379  311  829  11 0.971794872
## 681  0.124760999 0.87523900 zero Group1 379  310  830  11 0.971794872
## 728  0.124297393 0.87570261 zero Group1 379  309  831  11 0.971794872
## 921  0.123732606 0.87626739 zero Group1 379  308  832  11 0.971794872
## 846  0.123506648 0.87649335 zero Group1 379  307  833  11 0.971794872
## 67   0.123170420 0.87682958  one Group1 380  307  833  10 0.974358974
## 734  0.121964467 0.87803553 zero Group1 380  306  834  10 0.974358974
## 1189 0.121699418 0.87830058 zero Group1 380  305  835  10 0.974358974
## 357  0.121420468 0.87857953 zero Group1 380  304  836  10 0.974358974
## 1030 0.121261240 0.87873876 zero Group1 380  303  837  10 0.974358974
## 827  0.121233605 0.87876640  one Group1 381  303  837   9 0.976923077
## 775  0.120707726 0.87929227 zero Group1 381  302  838   9 0.976923077
## 1203 0.120702608 0.87929739 zero Group1 381  301  839   9 0.976923077
## 1130 0.120239997 0.87976000 zero Group1 381  300  840   9 0.976923077
## 906  0.118502446 0.88149755 zero Group1 381  299  841   9 0.976923077
## 790  0.118328932 0.88167107 zero Group1 381  298  842   9 0.976923077
## 924  0.117964669 0.88203533 zero Group1 381  297  843   9 0.976923077
## 279  0.117934841 0.88206516 zero Group1 381  296  844   9 0.976923077
## 768  0.117821995 0.88217800 zero Group1 381  295  845   9 0.976923077
## 974  0.117337350 0.88266265 zero Group1 381  294  846   9 0.976923077
## 60   0.117302941 0.88269706 zero Group1 381  293  847   9 0.976923077
## 1396 0.117153860 0.88284614 zero Group1 381  292  848   9 0.976923077
## 1323 0.117140519 0.88285948 zero Group1 381  291  849   9 0.976923077
## 715  0.116989272 0.88301073 zero Group1 381  290  850   9 0.976923077
## 175  0.116773312 0.88322669 zero Group1 381  289  851   9 0.976923077
## 847  0.114996936 0.88500306 zero Group1 381  288  852   9 0.976923077
## 1293 0.114559041 0.88544096 zero Group1 381  287  853   9 0.976923077
## 281  0.114442542 0.88555746 zero Group1 381  286  854   9 0.976923077
## 1274 0.114218352 0.88578165 zero Group1 381  285  855   9 0.976923077
## 140  0.114193586 0.88580641  one Group1 382  285  855   8 0.979487179
## 1310 0.114007933 0.88599207 zero Group1 382  284  856   8 0.979487179
## 867  0.113982168 0.88601783 zero Group1 382  283  857   8 0.979487179
## 1193 0.113310778 0.88668922 zero Group1 382  282  858   8 0.979487179
## 1002 0.113223572 0.88677643 zero Group1 382  281  859   8 0.979487179
## 278  0.112880811 0.88711919 zero Group1 382  280  860   8 0.979487179
## 1025 0.112569829 0.88743017 zero Group1 382  279  861   8 0.979487179
## 177  0.112483366 0.88751663 zero Group1 382  278  862   8 0.979487179
## 594  0.112022954 0.88797705 zero Group1 382  277  863   8 0.979487179
## 1385 0.111592285 0.88840772 zero Group1 382  276  864   8 0.979487179
## 1294 0.111385421 0.88861458 zero Group1 382  275  865   8 0.979487179
## 52   0.111330198 0.88866980 zero Group1 382  274  866   8 0.979487179
## 336  0.110985144 0.88901486  one Group1 383  274  866   7 0.982051282
## 882  0.110454623 0.88954538 zero Group1 383  273  867   7 0.982051282
## 439  0.110012789 0.88998721 zero Group1 383  272  868   7 0.982051282
## 1349 0.109431364 0.89056864 zero Group1 383  271  869   7 0.982051282
## 436  0.108986456 0.89101354 zero Group1 383  270  870   7 0.982051282
## 772  0.108671760 0.89132824 zero Group1 383  269  871   7 0.982051282
## 414  0.108443060 0.89155694  one Group1 384  269  871   6 0.984615385
## 249  0.107896970 0.89210303 zero Group1 384  268  872   6 0.984615385
## 1120 0.107123222 0.89287678 zero Group1 384  267  873   6 0.984615385
## 698  0.106894050 0.89310595 zero Group1 384  266  874   6 0.984615385
## 528  0.106882373 0.89311763 zero Group1 384  265  875   6 0.984615385
## 845  0.105671803 0.89432820 zero Group1 384  264  876   6 0.984615385
## 812  0.105472118 0.89452788 zero Group1 384  263  877   6 0.984615385
## 1463 0.104531468 0.89546853 zero Group1 384  262  878   6 0.984615385
## 1477 0.104160923 0.89583908 zero Group1 384  261  879   6 0.984615385
## 848  0.104053981 0.89594602 zero Group1 384  260  880   6 0.984615385
## 1412 0.104012733 0.89598727 zero Group1 384  259  881   6 0.984615385
## 276  0.103349640 0.89665036 zero Group1 384  258  882   6 0.984615385
## 10   0.103246151 0.89675385 zero Group1 384  257  883   6 0.984615385
## 165  0.103120467 0.89687953 zero Group1 384  256  884   6 0.984615385
## 185  0.102619105 0.89738090  one Group1 385  256  884   5 0.987179487
## 904  0.102581237 0.89741876 zero Group1 385  255  885   5 0.987179487
## 881  0.102428824 0.89757118 zero Group1 385  254  886   5 0.987179487
## 738  0.100864571 0.89913543 zero Group1 385  253  887   5 0.987179487
## 1084 0.100591783 0.89940822 zero Group1 385  252  888   5 0.987179487
## 898  0.100578002 0.89942200 zero Group1 385  251  889   5 0.987179487
## 971  0.100498317 0.89950168 zero Group1 385  250  890   5 0.987179487
## 1435 0.100488289 0.89951171 zero Group1 385  249  891   5 0.987179487
## 905  0.100320722 0.89967928 zero Group1 385  248  892   5 0.987179487
## 1299 0.100299769 0.89970023 zero Group1 385  247  893   5 0.987179487
## 554  0.098883996 0.90111600 zero Group1 385  246  894   5 0.987179487
## 886  0.098750690 0.90124931 zero Group1 385  245  895   5 0.987179487
## 476  0.098568301 0.90143170 zero Group1 385  244  896   5 0.987179487
## 707  0.098250061 0.90174994 zero Group1 385  243  897   5 0.987179487
## 1053 0.097964338 0.90203566 zero Group1 385  242  898   5 0.987179487
## 803  0.097946359 0.90205364 zero Group1 385  241  899   5 0.987179487
## 1011 0.097812423 0.90218758 zero Group1 385  240  900   5 0.987179487
## 1201 0.097784756 0.90221524 zero Group1 385  239  901   5 0.987179487
## 839  0.097572005 0.90242799 zero Group1 385  238  902   5 0.987179487
## 1337 0.095965971 0.90403403 zero Group1 385  237  903   5 0.987179487
## 1181 0.095414804 0.90458520 zero Group1 385  236  904   5 0.987179487
## 1046 0.095051319 0.90494868 zero Group1 385  235  905   5 0.987179487
## 1128 0.094972596 0.90502740 zero Group1 385  234  906   5 0.987179487
## 794  0.094919135 0.90508086 zero Group1 385  233  907   5 0.987179487
## 866  0.093757235 0.90624276 zero Group1 385  232  908   5 0.987179487
## 1370 0.093731611 0.90626839 zero Group1 385  231  909   5 0.987179487
## 501  0.093406014 0.90659399 zero Group1 385  230  910   5 0.987179487
## 442  0.093029303 0.90697070  one Group1 386  230  910   4 0.989743590
## 490  0.092356251 0.90764375 zero Group1 386  229  911   4 0.989743590
## 862  0.092155100 0.90784490 zero Group1 386  228  912   4 0.989743590
## 722  0.092149224 0.90785078 zero Group1 386  227  913   4 0.989743590
## 1096 0.092148257 0.90785174 zero Group1 386  226  914   4 0.989743590
## 1526 0.091636176 0.90836382 zero Group1 386  225  915   4 0.989743590
## 6    0.091476845 0.90852315  one Group1 387  225  915   3 0.992307692
## 1212 0.090825769 0.90917423 zero Group1 387  224  916   3 0.992307692
## 1344 0.090055538 0.90994446 zero Group1 387  223  917   3 0.992307692
## 1454 0.089680555 0.91031944 zero Group1 387  222  918   3 0.992307692
## 1154 0.089592336 0.91040766 zero Group1 387  221  919   3 0.992307692
## 760  0.089182776 0.91081722  one Group1 388  221  919   2 0.994871795
## 1332 0.088499299 0.91150070 zero Group1 388  220  920   2 0.994871795
## 525  0.086702642 0.91329736 zero Group1 388  219  921   2 0.994871795
## 80   0.086137587 0.91386241 zero Group1 388  218  922   2 0.994871795
## 473  0.085631460 0.91436854 zero Group1 388  217  923   2 0.994871795
## 179  0.085046138 0.91495386 zero Group1 388  216  924   2 0.994871795
## 173  0.084454608 0.91554539 zero Group1 388  215  925   2 0.994871795
## 1290 0.084397377 0.91560262 zero Group1 388  214  926   2 0.994871795
## 1048 0.084369385 0.91563061 zero Group1 388  213  927   2 0.994871795
## 833  0.084002876 0.91599712 zero Group1 388  212  928   2 0.994871795
## 380  0.083760075 0.91623993 zero Group1 388  211  929   2 0.994871795
## 573  0.083020146 0.91697985 zero Group1 388  210  930   2 0.994871795
## 1146 0.082839743 0.91716026 zero Group1 388  209  931   2 0.994871795
## 226  0.082792900 0.91720710 zero Group1 388  208  932   2 0.994871795
## 1392 0.081803821 0.91819618 zero Group1 388  207  933   2 0.994871795
## 935  0.081666518 0.91833348 zero Group1 388  206  934   2 0.994871795
## 869  0.081617145 0.91838285 zero Group1 388  205  935   2 0.994871795
## 990  0.081327536 0.91867246 zero Group1 388  204  936   2 0.994871795
## 708  0.081245235 0.91875477 zero Group1 388  203  937   2 0.994871795
## 596  0.081053681 0.91894632 zero Group1 388  202  938   2 0.994871795
## 703  0.080910750 0.91908925 zero Group1 388  201  939   2 0.994871795
## 1204 0.080783040 0.91921696 zero Group1 388  200  940   2 0.994871795
## 661  0.080276965 0.91972303 zero Group1 388  199  941   2 0.994871795
## 308  0.079814977 0.92018502  one Group1 389  199  941   1 0.997435897
## 1336 0.079759853 0.92024015 zero Group1 389  198  942   1 0.997435897
## 792  0.079468219 0.92053178 zero Group1 389  197  943   1 0.997435897
## 1195 0.079402178 0.92059782 zero Group1 389  196  944   1 0.997435897
## 1460 0.078454442 0.92154556 zero Group1 389  195  945   1 0.997435897
## 284  0.078048432 0.92195157 zero Group1 389  194  946   1 0.997435897
## 1078 0.077688456 0.92231154 zero Group1 389  193  947   1 0.997435897
## 724  0.077389514 0.92261049 zero Group1 389  192  948   1 0.997435897
## 702  0.077357925 0.92264208 zero Group1 389  191  949   1 0.997435897
## 670  0.076866317 0.92313368 zero Group1 389  190  950   1 0.997435897
## 1281 0.076565219 0.92343478 zero Group1 389  189  951   1 0.997435897
## 667  0.076354833 0.92364517 zero Group1 389  188  952   1 0.997435897
## 1459 0.076154062 0.92384594 zero Group1 389  187  953   1 0.997435897
## 1035 0.076091762 0.92390824 zero Group1 389  186  954   1 0.997435897
## 531  0.075459994 0.92454001 zero Group1 389  185  955   1 0.997435897
## 1224 0.074293075 0.92570693 zero Group1 389  184  956   1 0.997435897
## 659  0.073781799 0.92621820 zero Group1 389  183  957   1 0.997435897
## 1005 0.073709079 0.92629092 zero Group1 389  182  958   1 0.997435897
## 668  0.073228257 0.92677174 zero Group1 389  181  959   1 0.997435897
## 564  0.072695518 0.92730448 zero Group1 389  180  960   1 0.997435897
## 861  0.072693101 0.92730690 zero Group1 389  179  961   1 0.997435897
## 559  0.072521889 0.92747811 zero Group1 389  178  962   1 0.997435897
## 967  0.072089224 0.92791078 zero Group1 389  177  963   1 0.997435897
## 176  0.072086236 0.92791376 zero Group1 389  176  964   1 0.997435897
## 1211 0.071881567 0.92811843 zero Group1 389  175  965   1 0.997435897
## 1085 0.071290078 0.92870992 zero Group1 389  174  966   1 0.997435897
## 899  0.071009211 0.92899079 zero Group1 389  173  967   1 0.997435897
## 709  0.070983619 0.92901638 zero Group1 389  172  968   1 0.997435897
## 282  0.070917022 0.92908298 zero Group1 389  171  969   1 0.997435897
## 532  0.070819780 0.92918022 zero Group1 389  170  970   1 0.997435897
## 639  0.070208339 0.92979166 zero Group1 389  169  971   1 0.997435897
## 991  0.070064338 0.92993566 zero Group1 389  168  972   1 0.997435897
## 1158 0.069922988 0.93007701 zero Group1 389  167  973   1 0.997435897
## 973  0.069766496 0.93023350 zero Group1 389  166  974   1 0.997435897
## 1152 0.069224950 0.93077505 zero Group1 389  165  975   1 0.997435897
## 1243 0.068995146 0.93100485 zero Group1 389  164  976   1 0.997435897
## 746  0.068923394 0.93107661 zero Group1 389  163  977   1 0.997435897
## 1012 0.068763954 0.93123605 zero Group1 389  162  978   1 0.997435897
## 1049 0.068463700 0.93153630 zero Group1 389  161  979   1 0.997435897
## 1280 0.067963600 0.93203640 zero Group1 389  160  980   1 0.997435897
## 1317 0.067696761 0.93230324 zero Group1 389  159  981   1 0.997435897
## 23   0.067604035 0.93239596  one Group1 390  159  981   0 1.000000000
## 725  0.067056432 0.93294357 zero Group1 390  158  982   0 1.000000000
## 298  0.066506196 0.93349380 zero Group1 390  157  983   0 1.000000000
## 632  0.066411365 0.93358864 zero Group1 390  156  984   0 1.000000000
## 938  0.066043634 0.93395637 zero Group1 390  155  985   0 1.000000000
## 776  0.065675446 0.93432455 zero Group1 390  154  986   0 1.000000000
## 1034 0.065365034 0.93463497 zero Group1 390  153  987   0 1.000000000
## 1248 0.065274070 0.93472593 zero Group1 390  152  988   0 1.000000000
## 44   0.065051054 0.93494895 zero Group1 390  151  989   0 1.000000000
## 1117 0.064538407 0.93546159 zero Group1 390  150  990   0 1.000000000
## 779  0.064030968 0.93596903 zero Group1 390  149  991   0 1.000000000
## 970  0.064022999 0.93597700 zero Group1 390  148  992   0 1.000000000
## 1371 0.063748739 0.93625126 zero Group1 390  147  993   0 1.000000000
## 1409 0.063443674 0.93655633 zero Group1 390  146  994   0 1.000000000
## 487  0.063393876 0.93660612 zero Group1 390  145  995   0 1.000000000
## 1209 0.062955701 0.93704430 zero Group1 390  144  996   0 1.000000000
## 1157 0.062678258 0.93732174 zero Group1 390  143  997   0 1.000000000
## 1113 0.062647619 0.93735238 zero Group1 390  142  998   0 1.000000000
## 937  0.061226005 0.93877399 zero Group1 390  141  999   0 1.000000000
## 384  0.061177426 0.93882257 zero Group1 390  140 1000   0 1.000000000
## 1013 0.061084463 0.93891554 zero Group1 390  139 1001   0 1.000000000
## 814  0.060972031 0.93902797 zero Group1 390  138 1002   0 1.000000000
## 1425 0.060849902 0.93915010 zero Group1 390  137 1003   0 1.000000000
## 1350 0.060692245 0.93930776 zero Group1 390  136 1004   0 1.000000000
## 743  0.060479416 0.93952058 zero Group1 390  135 1005   0 1.000000000
## 777  0.060392297 0.93960770 zero Group1 390  134 1006   0 1.000000000
## 1503 0.060389711 0.93961029 zero Group1 390  133 1007   0 1.000000000
## 631  0.059582638 0.94041736 zero Group1 390  132 1008   0 1.000000000
## 660  0.059429806 0.94057019 zero Group1 390  131 1009   0 1.000000000
## 1286 0.058846798 0.94115320 zero Group1 390  130 1010   0 1.000000000
## 793  0.058451671 0.94154833 zero Group1 390  129 1011   0 1.000000000
## 98   0.058440154 0.94155985 zero Group1 390  128 1012   0 1.000000000
## 438  0.058302493 0.94169751 zero Group1 390  127 1013   0 1.000000000
## 994  0.057687017 0.94231298 zero Group1 390  126 1014   0 1.000000000
## 1145 0.056796110 0.94320389 zero Group1 390  125 1015   0 1.000000000
## 1419 0.056448371 0.94355163 zero Group1 390  124 1016   0 1.000000000
## 1401 0.056141436 0.94385856 zero Group1 390  123 1017   0 1.000000000
## 729  0.056000538 0.94399946 zero Group1 390  122 1018   0 1.000000000
## 117  0.055967397 0.94403260 zero Group1 390  121 1019   0 1.000000000
## 1528 0.055596448 0.94440355 zero Group1 390  120 1020   0 1.000000000
## 1352 0.055411331 0.94458867 zero Group1 390  119 1021   0 1.000000000
## 972  0.055335751 0.94466425 zero Group1 390  118 1022   0 1.000000000
## 883  0.054916875 0.94508313 zero Group1 390  117 1023   0 1.000000000
## 1044 0.054838263 0.94516174 zero Group1 390  116 1024   0 1.000000000
## 526  0.053854569 0.94614543 zero Group1 390  115 1025   0 1.000000000
## 1270 0.053584950 0.94641505 zero Group1 390  114 1026   0 1.000000000
## 89   0.053581717 0.94641828 zero Group1 390  113 1027   0 1.000000000
## 1082 0.053296644 0.94670336 zero Group1 390  112 1028   0 1.000000000
## 870  0.052996650 0.94700335 zero Group1 390  111 1029   0 1.000000000
## 562  0.052880243 0.94711976 zero Group1 390  110 1030   0 1.000000000
## 1452 0.052827775 0.94717222 zero Group1 390  109 1031   0 1.000000000
## 860  0.052825903 0.94717410 zero Group1 390  108 1032   0 1.000000000
## 885  0.051819785 0.94818022 zero Group1 390  107 1033   0 1.000000000
## 1383 0.051778122 0.94822188 zero Group1 390  106 1034   0 1.000000000
## 1316 0.051724590 0.94827541 zero Group1 390  105 1035   0 1.000000000
## 789  0.051142901 0.94885710 zero Group1 390  104 1036   0 1.000000000
## 455  0.050677667 0.94932233 zero Group1 390  103 1037   0 1.000000000
## 1051 0.050506964 0.94949304 zero Group1 390  102 1038   0 1.000000000
## 441  0.049816403 0.95018360 zero Group1 390  101 1039   0 1.000000000
## 723  0.048662089 0.95133791 zero Group1 390  100 1040   0 1.000000000
## 96   0.047723914 0.95227609 zero Group1 390   99 1041   0 1.000000000
## 428  0.047655660 0.95234434 zero Group1 390   98 1042   0 1.000000000
## 1420 0.046124999 0.95387500 zero Group1 390   97 1043   0 1.000000000
## 1230 0.046048810 0.95395119 zero Group1 390   96 1044   0 1.000000000
## 463  0.045895652 0.95410435 zero Group1 390   95 1045   0 1.000000000
## 1021 0.045837578 0.95416242 zero Group1 390   94 1046   0 1.000000000
## 1210 0.045535407 0.95446459 zero Group1 390   93 1047   0 1.000000000
## 1115 0.045124816 0.95487518 zero Group1 390   92 1048   0 1.000000000
## 266  0.044432615 0.95556739 zero Group1 390   91 1049   0 1.000000000
## 1462 0.044344630 0.95565537 zero Group1 390   90 1050   0 1.000000000
## 563  0.044257984 0.95574202 zero Group1 390   89 1051   0 1.000000000
## 928  0.043912174 0.95608783 zero Group1 390   88 1052   0 1.000000000
## 329  0.043850703 0.95614930 zero Group1 390   87 1053   0 1.000000000
## 1494 0.043742280 0.95625772 zero Group1 390   86 1054   0 1.000000000
## 1219 0.043144480 0.95685552 zero Group1 390   85 1055   0 1.000000000
## 705  0.043117862 0.95688214 zero Group1 390   84 1056   0 1.000000000
## 1529 0.042930239 0.95706976 zero Group1 390   83 1057   0 1.000000000
## 1123 0.042847431 0.95715257 zero Group1 390   82 1058   0 1.000000000
## 810  0.042358533 0.95764147 zero Group1 390   81 1059   0 1.000000000
## 493  0.041794322 0.95820568 zero Group1 390   80 1060   0 1.000000000
## 530  0.041532147 0.95846785 zero Group1 390   79 1061   0 1.000000000
## 747  0.041508556 0.95849144 zero Group1 390   78 1062   0 1.000000000
## 816  0.041158169 0.95884183 zero Group1 390   77 1063   0 1.000000000
## 815  0.041090598 0.95890940 zero Group1 390   76 1064   0 1.000000000
## 120  0.039961965 0.96003803 zero Group1 390   75 1065   0 1.000000000
## 560  0.039906971 0.96009303 zero Group1 390   74 1066   0 1.000000000
## 1354 0.038897907 0.96110209 zero Group1 390   73 1067   0 1.000000000
## 1240 0.037664941 0.96233506 zero Group1 390   72 1068   0 1.000000000
## 989  0.037596780 0.96240322 zero Group1 390   71 1069   0 1.000000000
## 215  0.037314913 0.96268509 zero Group1 390   70 1070   0 1.000000000
## 1492 0.036832058 0.96316794 zero Group1 390   69 1071   0 1.000000000
## 1348 0.036752953 0.96324705 zero Group1 390   68 1072   0 1.000000000
## 391  0.036212526 0.96378747 zero Group1 390   67 1073   0 1.000000000
## 783  0.035940097 0.96405990 zero Group1 390   66 1074   0 1.000000000
## 597  0.035845532 0.96415447 zero Group1 390   65 1075   0 1.000000000
## 1501 0.035264454 0.96473555 zero Group1 390   64 1076   0 1.000000000
## 1322 0.034805019 0.96519498 zero Group1 390   63 1077   0 1.000000000
## 936  0.034213932 0.96578607 zero Group1 390   62 1078   0 1.000000000
## 1244 0.033763107 0.96623689 zero Group1 390   61 1079   0 1.000000000
## 1351 0.033645105 0.96635490 zero Group1 390   60 1080   0 1.000000000
## 1079 0.033070114 0.96692989 zero Group1 390   59 1081   0 1.000000000
## 1527 0.033057682 0.96694232 zero Group1 390   58 1082   0 1.000000000
## 1156 0.032815859 0.96718414 zero Group1 390   57 1083   0 1.000000000
## 389  0.032386657 0.96761334 zero Group1 390   56 1084   0 1.000000000
## 633  0.032082528 0.96791747 zero Group1 390   55 1085   0 1.000000000
## 223  0.031836486 0.96816351 zero Group1 390   54 1086   0 1.000000000
## 1242 0.031088412 0.96891159 zero Group1 390   53 1087   0 1.000000000
## 770  0.030806550 0.96919345 zero Group1 390   52 1088   0 1.000000000
## 1050 0.030720460 0.96927954 zero Group1 390   51 1089   0 1.000000000
## 943  0.030314026 0.96968597 zero Group1 390   50 1090   0 1.000000000
## 808  0.030081118 0.96991888 zero Group1 390   49 1091   0 1.000000000
## 1387 0.029983170 0.97001683 zero Group1 390   48 1092   0 1.000000000
## 1427 0.029466983 0.97053302 zero Group1 390   47 1093   0 1.000000000
## 1187 0.029077918 0.97092208 zero Group1 390   46 1094   0 1.000000000
## 872  0.028096066 0.97190393 zero Group1 390   45 1095   0 1.000000000
## 1135 0.026744667 0.97325533 zero Group1 390   44 1096   0 1.000000000
## 726  0.026324118 0.97367588 zero Group1 390   43 1097   0 1.000000000
## 548  0.026174123 0.97382588 zero Group1 390   42 1098   0 1.000000000
## 1095 0.026120417 0.97387958 zero Group1 390   41 1099   0 1.000000000
## 809  0.026004771 0.97399523 zero Group1 390   40 1100   0 1.000000000
## 566  0.025423769 0.97457623 zero Group1 390   39 1101   0 1.000000000
## 769  0.025339076 0.97466092 zero Group1 390   38 1102   0 1.000000000
## 606  0.025123311 0.97487669 zero Group1 390   37 1103   0 1.000000000
## 1191 0.025082807 0.97491719 zero Group1 390   36 1104   0 1.000000000
## 264  0.024776632 0.97522337 zero Group1 390   35 1105   0 1.000000000
## 1083 0.024478910 0.97552109 zero Group1 390   34 1106   0 1.000000000
## 1381 0.023999921 0.97600008 zero Group1 390   33 1107   0 1.000000000
## 942  0.023839499 0.97616050 zero Group1 390   32 1108   0 1.000000000
## 868  0.023478233 0.97652177 zero Group1 390   31 1109   0 1.000000000
## 1393 0.022453294 0.97754671 zero Group1 390   30 1110   0 1.000000000
## 1516 0.022107717 0.97789228 zero Group1 390   29 1111   0 1.000000000
## 640  0.022003747 0.97799625 zero Group1 390   28 1112   0 1.000000000
## 595  0.020956939 0.97904306 zero Group1 390   27 1113   0 1.000000000
## 976  0.020570717 0.97942928 zero Group1 390   26 1114   0 1.000000000
## 1076 0.020246948 0.97975305 zero Group1 390   25 1115   0 1.000000000
## 744  0.018704088 0.98129591 zero Group1 390   24 1116   0 1.000000000
## 1510 0.018635868 0.98136413 zero Group1 390   23 1117   0 1.000000000
## 474  0.018591254 0.98140875 zero Group1 390   22 1118   0 1.000000000
## 1223 0.018163025 0.98183698 zero Group1 390   21 1119   0 1.000000000
## 1390 0.017758409 0.98224159 zero Group1 390   20 1120   0 1.000000000
## 1093 0.016859366 0.98314063 zero Group1 390   19 1121   0 1.000000000
## 529  0.016450164 0.98354984 zero Group1 390   18 1122   0 1.000000000
## 106  0.015847213 0.98415279 zero Group1 390   17 1123   0 1.000000000
## 638  0.015531571 0.98446843 zero Group1 390   16 1124   0 1.000000000
## 578  0.015463298 0.98453670 zero Group1 390   15 1125   0 1.000000000
## 836  0.014149901 0.98585010 zero Group1 390   14 1126   0 1.000000000
## 47   0.013806043 0.98619396 zero Group1 390   13 1127   0 1.000000000
## 618  0.012493038 0.98750696 zero Group1 390   12 1128   0 1.000000000
## 917  0.012173181 0.98782682 zero Group1 390   11 1129   0 1.000000000
## 941  0.011873923 0.98812608 zero Group1 390   10 1130   0 1.000000000
## 727  0.011869228 0.98813077 zero Group1 390    9 1131   0 1.000000000
## 911  0.011572532 0.98842747 zero Group1 390    8 1132   0 1.000000000
## 844  0.011533125 0.98846688 zero Group1 390    7 1133   0 1.000000000
## 1508 0.010075846 0.98992415 zero Group1 390    6 1134   0 1.000000000
## 73   0.008155751 0.99184425 zero Group1 390    5 1135   0 1.000000000
## 1410 0.007212640 0.99278736 zero Group1 390    4 1136   0 1.000000000
## 334  0.006802762 0.99319724 zero Group1 390    3 1137   0 1.000000000
## 285  0.006064177 0.99393582 zero Group1 390    2 1138   0 1.000000000
## 1399 0.005521462 0.99447854 zero Group1 390    1 1139   0 1.000000000
## 1404 0.005245820 0.99475418 zero Group1 390    0 1140   0 1.000000000
##             SPEC Informedness      PREC       NPV      MARK         F1
## 131  1.000000000  0.002564103 1.0000000 0.7455853 0.7455853 0.00511509
## 342  1.000000000  0.005128205 1.0000000 0.7460733 0.7460733 0.01020408
## 1170 1.000000000  0.007692308 1.0000000 0.7465619 0.7465619 0.01526718
## 50   1.000000000  0.010256410 1.0000000 0.7470511 0.7470511 0.02030457
## 1285 0.999122807  0.009379217 0.8000000 0.7468852 0.5468852 0.02025316
## 294  0.999122807  0.011943320 0.8333333 0.7473753 0.5807087 0.02525253
## 257  0.999122807  0.014507422 0.8571429 0.7478661 0.6050089 0.03022670
## 543  0.999122807  0.017071525 0.8750000 0.7483574 0.6233574 0.03517588
## 1472 0.999122807  0.019635628 0.8888889 0.7488494 0.6377383 0.04010025
## 482  0.998245614  0.018758435 0.8000000 0.7486842 0.5486842 0.04000000
## 826  0.998245614  0.021322537 0.8181818 0.7491771 0.5673589 0.04488778
## 1178 0.997368421  0.020445344 0.7500000 0.7490119 0.4990119 0.04477612
## 820  0.997368421  0.023009447 0.7692308 0.7495056 0.5187364 0.04962779
## 1019 0.996491228  0.022132254 0.7142857 0.7493404 0.4636261 0.04950495
## 1    0.996491228  0.024696356 0.7333333 0.7498350 0.4831683 0.05432099
## 624  0.995614035  0.023819163 0.6875000 0.7496697 0.4371697 0.05418719
## 449  0.995614035  0.026383266 0.7058824 0.7501652 0.4560476 0.05896806
## 127  0.995614035  0.028947368 0.7222222 0.7506614 0.4728836 0.06372549
## 1376 0.994736842  0.028070175 0.6842105 0.7504964 0.4347069 0.06356968
## 246  0.994736842  0.030634278 0.7000000 0.7509934 0.4509934 0.06829268
## 263  0.993859649  0.029757085 0.6666667 0.7508284 0.4174950 0.06812652
## 195  0.993859649  0.032321188 0.6818182 0.7513263 0.4331444 0.07281553
## 1482 0.992982456  0.031443995 0.6521739 0.7511612 0.4033352 0.07263923
## 538  0.992982456  0.034008097 0.6666667 0.7516600 0.4183267 0.07729469
## 1321 0.992105263  0.033130904 0.6400000 0.7514950 0.3914950 0.07710843
## 208  0.992105263  0.035695007 0.6538462 0.7519947 0.4058408 0.08173077
## 1300 0.991228070  0.034817814 0.6296296 0.7518297 0.3814593 0.08153477
## 150  0.991228070  0.037381916 0.6428571 0.7523302 0.3951874 0.08612440
## 232  0.991228070  0.039946019 0.6551724 0.7528314 0.4080039 0.09069212
## 818  0.991228070  0.042510121 0.6666667 0.7533333 0.4200000 0.09523810
## 752  0.991228070  0.045074224 0.6774194 0.7538359 0.4312552 0.09976247
## 211  0.991228070  0.047638327 0.6875000 0.7543391 0.4418391 0.10426540
## 248  0.991228070  0.050202429 0.6969697 0.7548430 0.4518127 0.10874704
## 205  0.991228070  0.052766532 0.7058824 0.7553476 0.4612299 0.11320755
## 138  0.991228070  0.055330634 0.7142857 0.7558528 0.4701386 0.11764706
## 1061 0.991228070  0.057894737 0.7222222 0.7563588 0.4785810 0.12206573
## 5    0.991228070  0.060458839 0.7297297 0.7568654 0.4865951 0.12646370
## 287  0.991228070  0.063022942 0.7368421 0.7573727 0.4942148 0.13084112
## 11   0.991228070  0.065587045 0.7435897 0.7578806 0.5014704 0.13519814
## 1003 0.990350877  0.064709852 0.7250000 0.7577181 0.4827181 0.13488372
## 343  0.990350877  0.067273954 0.7317073 0.7582270 0.4899343 0.13921114
## 270  0.989473684  0.066396761 0.7142857 0.7580645 0.4723502 0.13888889
## 1397 0.988596491  0.065519568 0.6976744 0.7579018 0.4555762 0.13856813
## 796  0.987719298  0.064642375 0.6818182 0.7577389 0.4395571 0.13824885
## 1309 0.986842105  0.063765182 0.6666667 0.7575758 0.4242424 0.13793103
## 462  0.985964912  0.062887989 0.6521739 0.7574124 0.4095863 0.13761468
## 1256 0.985964912  0.065452092 0.6595745 0.7579231 0.4174976 0.14187643
## 821  0.985964912  0.068016194 0.6666667 0.7584345 0.4251012 0.14611872
## 171  0.985087719  0.067139001 0.6530612 0.7582714 0.4113327 0.14578588
## 1468 0.985087719  0.069703104 0.6600000 0.7587838 0.4187838 0.15000000
## 146  0.985087719  0.072267206 0.6666667 0.7592968 0.4259635 0.15419501
## 251  0.985087719  0.074831309 0.6730769 0.7598106 0.4328875 0.15837104
## 1473 0.985087719  0.077395412 0.6792453 0.7603250 0.4395703 0.16252822
## 930  0.984210526  0.076518219 0.6666667 0.7601626 0.4268293 0.16216216
## 356  0.984210526  0.079082321 0.6727273 0.7606780 0.4334052 0.16629213
## 1363 0.984210526  0.081646424 0.6785714 0.7611940 0.4397655 0.17040359
## 190  0.984210526  0.084210526 0.6842105 0.7617108 0.4459213 0.17449664
## 372  0.983333333  0.083333333 0.6724138 0.7615489 0.4339627 0.17410714
## 400  0.983333333  0.085897436 0.6779661 0.7620666 0.4400327 0.17817372
## 641  0.983333333  0.088461538 0.6833333 0.7625850 0.4459184 0.18222222
## 183  0.983333333  0.091025641 0.6885246 0.7631042 0.4516287 0.18625277
## 1375 0.982456140  0.090148448 0.6774194 0.7629428 0.4403621 0.18584071
## 1365 0.982456140  0.092712551 0.6825397 0.7634628 0.4460025 0.18984547
## 338  0.982456140  0.095276653 0.6875000 0.7639836 0.4514836 0.19383260
## 802  0.981578947  0.094399460 0.6769231 0.7638225 0.4407456 0.19340659
## 795  0.980701754  0.093522267 0.6666667 0.7636612 0.4303279 0.19298246
## 370  0.979824561  0.092645074 0.6567164 0.7634997 0.4202161 0.19256018
## 207  0.979824561  0.095209177 0.6617647 0.7640219 0.4257866 0.19650655
## 139  0.979824561  0.097773279 0.6666667 0.7645448 0.4312115 0.20043573
## 1202 0.978947368  0.096896086 0.6571429 0.7643836 0.4215264 0.20000000
## 18   0.978947368  0.099460189 0.6619718 0.7649075 0.4268793 0.20390456
## 1018 0.978070175  0.098582996 0.6527778 0.7647462 0.4175240 0.20346320
## 154  0.978070175  0.101147099 0.6575342 0.7652711 0.4228054 0.20734341
## 196  0.978070175  0.103711201 0.6621622 0.7657967 0.4279589 0.21120690
## 306  0.978070175  0.106275304 0.6666667 0.7663230 0.4329897 0.21505376
## 413  0.978070175  0.108839406 0.6710526 0.7668501 0.4379027 0.21888412
## 825  0.978070175  0.111403509 0.6753247 0.7673778 0.4427025 0.22269807
## 782  0.977192982  0.110526316 0.6666667 0.7672176 0.4338843 0.22222222
## 451  0.977192982  0.113090418 0.6708861 0.7677464 0.4386325 0.22601279
## 1260 0.977192982  0.115654521 0.6750000 0.7682759 0.4432759 0.22978723
## 481  0.976315789  0.114777328 0.6666667 0.7681159 0.4347826 0.22929936
## 244  0.976315789  0.117341430 0.6707317 0.7686464 0.4393781 0.23305085
## 1179 0.975438596  0.116464238 0.6626506 0.7684865 0.4311371 0.23255814
## 1358 0.975438596  0.119028340 0.6666667 0.7690180 0.4356846 0.23628692
## 110  0.975438596  0.121592443 0.6705882 0.7695502 0.4401384 0.24000000
## 419  0.975438596  0.124156545 0.6744186 0.7700831 0.4445017 0.24369748
## 757  0.975438596  0.126720648 0.6781609 0.7706168 0.4487777 0.24737945
## 237  0.975438596  0.129284750 0.6818182 0.7711512 0.4529694 0.25104603
## 1217 0.974561404  0.128407557 0.6741573 0.7709924 0.4451497 0.25052192
## 155  0.973684211  0.127530364 0.6666667 0.7708333 0.4375000 0.25000000
## 141  0.973684211  0.130094467 0.6703297 0.7713690 0.4416987 0.25363825
## 1107 0.972807018  0.129217274 0.6630435 0.7712100 0.4342535 0.25311203
## 202  0.972807018  0.131781377 0.6666667 0.7717467 0.4384134 0.25672878
## 1057 0.972807018  0.134345479 0.6702128 0.7722841 0.4424969 0.26033058
## 354  0.972807018  0.136909582 0.6736842 0.7728223 0.4465065 0.26391753
## 1319 0.971929825  0.136032389 0.6666667 0.7726639 0.4393305 0.26337449
## 361  0.971929825  0.138596491 0.6701031 0.7732031 0.4433062 0.26694045
## 1054 0.971929825  0.141160594 0.6734694 0.7737430 0.4472124 0.27049180
## 570  0.971052632  0.140283401 0.6666667 0.7735849 0.4402516 0.26993865
## 650  0.971052632  0.142847503 0.6700000 0.7741259 0.4441259 0.27346939
## 247  0.971052632  0.145411606 0.6732673 0.7746676 0.4479349 0.27698574
## 352  0.971052632  0.147975709 0.6764706 0.7752101 0.4516807 0.28048780
## 1262 0.971052632  0.150539811 0.6796117 0.7757533 0.4553650 0.28397566
## 109  0.971052632  0.153103914 0.6826923 0.7762973 0.4589896 0.28744939
## 409  0.971052632  0.155668016 0.6857143 0.7768421 0.4625564 0.29090909
## 1395 0.970175439  0.154790823 0.6792453 0.7766854 0.4559307 0.29032258
## 351  0.970175439  0.157354926 0.6822430 0.7772312 0.4594742 0.29376258
## 980  0.969298246  0.156477733 0.6759259 0.7770745 0.4530005 0.29317269
## 184  0.969298246  0.159041835 0.6788991 0.7776214 0.4565205 0.29659319
## 945  0.969298246  0.161605938 0.6818182 0.7781690 0.4599872 0.30000000
## 254  0.969298246  0.164170040 0.6846847 0.7787174 0.4634021 0.30339321
## 1020 0.968421053  0.163292848 0.6785714 0.7785614 0.4571328 0.30278884
## 1045 0.967543860  0.162415655 0.6725664 0.7784051 0.4509715 0.30218688
## 1068 0.966666667  0.161538462 0.6666667 0.7782486 0.4449153 0.30158730
## 1060 0.966666667  0.164102564 0.6695652 0.7787986 0.4483638 0.30495050
## 289  0.966666667  0.166666667 0.6724138 0.7793494 0.4517632 0.30830040
## 240  0.966666667  0.169230769 0.6752137 0.7799009 0.4551146 0.31163708
## 295  0.966666667  0.171794872 0.6779661 0.7804533 0.4584194 0.31496063
## 432  0.965789474  0.170917679 0.6722689 0.7802977 0.4525666 0.31434185
## 1081 0.964912281  0.170040486 0.6666667 0.7801418 0.4468085 0.31372549
## 1066 0.964912281  0.172604588 0.6694215 0.7806955 0.4501170 0.31702544
## 193  0.964912281  0.175168691 0.6721311 0.7812500 0.4533811 0.32031250
## 1471 0.964912281  0.177732794 0.6747967 0.7818053 0.4566020 0.32358674
## 256  0.964912281  0.180296896 0.6774194 0.7823613 0.4597807 0.32684825
## 873  0.964035088  0.179419703 0.6720000 0.7822064 0.4542064 0.32621359
## 546  0.964035088  0.181983806 0.6746032 0.7827635 0.4573667 0.32945736
## 321  0.963157895  0.181106613 0.6692913 0.7826087 0.4519000 0.32882012
## 730  0.962280702  0.180229420 0.6640625 0.7824536 0.4465161 0.32818533
## 1289 0.961403509  0.179352227 0.6589147 0.7822984 0.4412131 0.32755299
## 771  0.960526316  0.178475034 0.6538462 0.7821429 0.4359890 0.32692308
## 13   0.960526316  0.181039136 0.6564885 0.7827019 0.4391905 0.33013436
## 447  0.960526316  0.183603239 0.6590909 0.7832618 0.4423527 0.33333333
## 460  0.959649123  0.182726046 0.6541353 0.7831067 0.4372420 0.33269598
## 1373 0.958771930  0.181848853 0.6492537 0.7829513 0.4322050 0.33206107
## 448  0.958771930  0.184412955 0.6518519 0.7835125 0.4353644 0.33523810
## 1137 0.957894737  0.183535762 0.6470588 0.7833572 0.4304161 0.33460076
## 212  0.957894737  0.186099865 0.6496350 0.7839196 0.4335546 0.33776091
## 200  0.957894737  0.188663968 0.6521739 0.7844828 0.4366567 0.34090909
## 731  0.957017544  0.187786775 0.6474820 0.7843278 0.4318098 0.34026465
## 1177 0.956140351  0.186909582 0.6428571 0.7841727 0.4270298 0.33962264
## 1065 0.956140351  0.189473684 0.6453901 0.7847372 0.4301273 0.34274953
## 1361 0.956140351  0.192037787 0.6478873 0.7853026 0.4331899 0.34586466
## 1362 0.956140351  0.194601889 0.6503497 0.7858688 0.4362184 0.34896811
## 72   0.955263158  0.193724696 0.6458333 0.7857143 0.4315476 0.34831461
## 135  0.955263158  0.196288799 0.6482759 0.7862816 0.4345575 0.35140187
## 147  0.955263158  0.198852901 0.6506849 0.7868497 0.4375346 0.35447761
## 1469 0.955263158  0.201417004 0.6530612 0.7874187 0.4404799 0.35754190
## 317  0.955263158  0.203981107 0.6554054 0.7879884 0.4433938 0.36059480
## 1443 0.954385965  0.203103914 0.6510067 0.7878349 0.4388416 0.35992579
## 1070 0.953508772  0.202226721 0.6466667 0.7876812 0.4343478 0.35925926
## 1271 0.952631579  0.201349528 0.6423841 0.7875272 0.4299113 0.35859519
## 430  0.951754386  0.200472335 0.6381579 0.7873730 0.4255309 0.35793358
## 470  0.951754386  0.203036437 0.6405229 0.7879448 0.4284677 0.36095764
## 346  0.951754386  0.205600540 0.6428571 0.7885174 0.4313746 0.36397059
## 258  0.951754386  0.208164642 0.6451613 0.7890909 0.4342522 0.36697248
## 748  0.951754386  0.210728745 0.6474359 0.7896652 0.4371011 0.36996337
## 894  0.950877193  0.209851552 0.6433121 0.7895120 0.4328241 0.36928702
## 1261 0.950877193  0.212415655 0.6455696 0.7900875 0.4356571 0.37226277
## 1074 0.950000000  0.211538462 0.6415094 0.7899344 0.4314438 0.37158470
## 996  0.949122807  0.210661269 0.6375000 0.7897810 0.4272810 0.37090909
## 964  0.948245614  0.209784076 0.6335404 0.7896275 0.4231678 0.37023593
## 464  0.947368421  0.208906883 0.6296296 0.7894737 0.4191033 0.36956522
## 319  0.947368421  0.211470985 0.6319018 0.7900512 0.4219530 0.37251356
## 540  0.947368421  0.214035088 0.6341463 0.7906296 0.4247759 0.37545126
## 340  0.947368421  0.216599190 0.6363636 0.7912088 0.4275724 0.37837838
## 216  0.946491228  0.215721997 0.6325301 0.7910557 0.4235858 0.37769784
## 1064 0.946491228  0.218286100 0.6347305 0.7916361 0.4263666 0.38061041
## 1077 0.945614035  0.217408907 0.6309524 0.7914831 0.4224355 0.37992832
## 1301 0.944736842  0.216531714 0.6272189 0.7913299 0.4185488 0.37924866
## 909  0.943859649  0.215654521 0.6235294 0.7911765 0.4147059 0.37857143
## 1292 0.942982456  0.214777328 0.6198830 0.7910228 0.4109059 0.37789661
## 1429 0.942105263  0.213900135 0.6162791 0.7908689 0.4071480 0.37722420
## 40   0.942105263  0.216464238 0.6184971 0.7914517 0.4099488 0.38010657
## 1058 0.942105263  0.219028340 0.6206897 0.7920354 0.4127251 0.38297872
## 42   0.942105263  0.221592443 0.6228571 0.7926199 0.4154771 0.38584071
## 950  0.942105263  0.224156545 0.6250000 0.7932053 0.4182053 0.38869258
## 588  0.941228070  0.223279352 0.6214689 0.7930525 0.4145214 0.38800705
## 716  0.940350877  0.222402159 0.6179775 0.7928994 0.4108769 0.38732394
## 349  0.940350877  0.224966262 0.6201117 0.7934863 0.4135980 0.39015817
## 567  0.939473684  0.224089069 0.6166667 0.7933333 0.4100000 0.38947368
## 1029 0.938596491  0.223211876 0.6132597 0.7931801 0.4064398 0.38879159
## 468  0.938596491  0.225775978 0.6153846 0.7937685 0.4091532 0.39160839
## 160  0.937719298  0.224898785 0.6120219 0.7936154 0.4056373 0.39092496
## 479  0.936842105  0.224021592 0.6086957 0.7934621 0.4021578 0.39024390
## 1466 0.936842105  0.226585695 0.6108108 0.7940520 0.4048629 0.39304348
## 61   0.936842105  0.229149798 0.6129032 0.7946429 0.4075461 0.39583333
## 62   0.936842105  0.231713900 0.6149733 0.7952345 0.4102078 0.39861352
## 111  0.936842105  0.234278003 0.6170213 0.7958271 0.4128484 0.40138408
## 1414 0.935964912  0.233400810 0.6137566 0.7956749 0.4094315 0.40069085
## 288  0.935964912  0.235964912 0.6157895 0.7962687 0.4120581 0.40344828
## 56   0.935964912  0.238529015 0.6178010 0.7968633 0.4146644 0.40619621
## 1432 0.935087719  0.237651822 0.6145833 0.7967115 0.4112948 0.40549828
## 116  0.935087719  0.240215924 0.6165803 0.7973074 0.4138877 0.40823328
## 714  0.934210526  0.239338731 0.6134021 0.7971557 0.4105578 0.40753425
## 122  0.934210526  0.241902834 0.6153846 0.7977528 0.4131374 0.41025641
## 840  0.933333333  0.241025641 0.6122449 0.7976012 0.4098461 0.40955631
## 1165 0.933333333  0.243589744 0.6142132 0.7981995 0.4124127 0.41226576
## 676  0.932456140  0.242712551 0.6111111 0.7980480 0.4091592 0.41156463
## 136  0.932456140  0.245276653 0.6130653 0.7986476 0.4117130 0.41426146
## 243  0.932456140  0.247840756 0.6150000 0.7992481 0.4142481 0.41694915
## 1063 0.932456140  0.250404858 0.6169154 0.7998495 0.4167649 0.41962775
## 259  0.932456140  0.252968961 0.6188119 0.8004518 0.4192637 0.42229730
## 170  0.931578947  0.252091768 0.6157635 0.8003014 0.4160650 0.42158516
## 798  0.930701754  0.251214575 0.6127451 0.8001508 0.4128959 0.42087542
## 1470 0.930701754  0.253778677 0.6146341 0.8007547 0.4153889 0.42352941
## 253  0.930701754  0.256342780 0.6165049 0.8013595 0.4178644 0.42617450
## 132  0.930701754  0.258906883 0.6183575 0.8019652 0.4203227 0.42881072
## 1269 0.929824561  0.258029690 0.6153846 0.8018154 0.4172000 0.42809365
## 1364 0.929824561  0.260593792 0.6172249 0.8024224 0.4196473 0.43071786
## 1475 0.929824561  0.263157895 0.6190476 0.8030303 0.4220779 0.43333333
## 218  0.928947368  0.262280702 0.6161137 0.8028810 0.4189947 0.43261231
## 292  0.928947368  0.264844804 0.6179245 0.8034901 0.4214147 0.43521595
## 128  0.928947368  0.267408907 0.6197183 0.8041002 0.4238185 0.43781095
## 571  0.928070175  0.266531714 0.6168224 0.8039514 0.4207738 0.43708609
## 889  0.927192982  0.265654521 0.6139535 0.8038023 0.4177558 0.43636364
## 797  0.926315789  0.264777328 0.6111111 0.8036530 0.4147641 0.43564356
## 1367 0.926315789  0.267341430 0.6129032 0.8042650 0.4171683 0.43822076
## 629  0.925438596  0.266464238 0.6100917 0.8041159 0.4142076 0.43750000
## 755  0.925438596  0.269028340 0.6118721 0.8047292 0.4166014 0.44006568
## 242  0.925438596  0.271592443 0.6136364 0.8053435 0.4189799 0.44262295
## 418  0.925438596  0.274156545 0.6153846 0.8059587 0.4213434 0.44517185
## 700  0.924561404  0.273279352 0.6126126 0.8058104 0.4184230 0.44444444
## 500  0.923684211  0.272402159 0.6098655 0.8056618 0.4155273 0.44371941
## 1426 0.922807018  0.271524966 0.6071429 0.8055130 0.4126559 0.44299674
## 145  0.922807018  0.274089069 0.6088889 0.8061303 0.4150192 0.44552846
## 956  0.922807018  0.276653171 0.6106195 0.8067485 0.4173679 0.44805195
## 69   0.922807018  0.279217274 0.6123348 0.8073676 0.4197024 0.45056726
## 1232 0.921929825  0.278340081 0.6096491 0.8072197 0.4168688 0.44983819
## 853  0.921052632  0.277462888 0.6069869 0.8070715 0.4140584 0.44911147
## 182  0.921052632  0.280026991 0.6086957 0.8076923 0.4163880 0.45161290
## 674  0.920175439  0.279149798 0.6060606 0.8075443 0.4136049 0.45088567
## 1467 0.920175439  0.281713900 0.6077586 0.8081664 0.4159250 0.45337621
## 829  0.920175439  0.284278003 0.6094421 0.8087895 0.4182316 0.45585875
## 1440 0.919298246  0.283400810 0.6068376 0.8086420 0.4154796 0.45512821
## 395  0.919298246  0.285964912 0.6085106 0.8092664 0.4177770 0.45760000
## 568  0.918421053  0.285087719 0.6059322 0.8091190 0.4150512 0.45686901
## 711  0.917543860  0.284210526 0.6033755 0.8089714 0.4123469 0.45614035
## 1474 0.917543860  0.286774629 0.6050420 0.8095975 0.4146395 0.45859873
## 895  0.916666667  0.285897436 0.6025105 0.8094500 0.4119605 0.45786963
## 658  0.915789474  0.285020243 0.6000000 0.8093023 0.4093023 0.45714286
## 1521 0.914912281  0.284143050 0.5975104 0.8091544 0.4066648 0.45641838
## 623  0.914035088  0.283265857 0.5950413 0.8090062 0.4040475 0.45569620
## 197  0.914035088  0.285829960 0.5967078 0.8096348 0.4063426 0.45813586
## 1449 0.913157895  0.284952767 0.5942623 0.8094868 0.4037491 0.45741325
## 108  0.913157895  0.287516869 0.5959184 0.8101167 0.4060351 0.45984252
## 45   0.912280702  0.286639676 0.5934959 0.8099688 0.4034648 0.45911950
## 1062 0.912280702  0.289203779 0.5951417 0.8106002 0.4057419 0.46153846
## 517  0.911403509  0.288326586 0.5927419 0.8104524 0.4031944 0.46081505
## 1037 0.910526316  0.287449393 0.5903614 0.8103044 0.4006659 0.46009390
## 1455 0.909649123  0.286572200 0.5880000 0.8101563 0.3981562 0.45937500
## 1402 0.908771930  0.285695007 0.5856574 0.8100078 0.3956652 0.45865835
## 780  0.907894737  0.284817814 0.5833333 0.8098592 0.3931925 0.45794393
## 498  0.907017544  0.283940621 0.5810277 0.8097103 0.3907379 0.45723173
## 310  0.907017544  0.286504723 0.5826772 0.8103448 0.3930220 0.45962733
## 1144 0.906140351  0.285627530 0.5803922 0.8101961 0.3905882 0.45891473
## 604  0.905263158  0.284750337 0.5781250 0.8100471 0.3881721 0.45820433
## 1215 0.904385965  0.283873144 0.5758755 0.8098979 0.3857734 0.45749614
## 982  0.903508772  0.282995951 0.5736434 0.8097484 0.3833918 0.45679012
## 1124 0.902631579  0.282118758 0.5714286 0.8095987 0.3810273 0.45608629
## 355  0.902631579  0.284682861 0.5730769 0.8102362 0.3833131 0.45846154
## 104  0.902631579  0.287246964 0.5747126 0.8108747 0.3855873 0.46082949
## 718  0.901754386  0.286369771 0.5725191 0.8107256 0.3832446 0.46012270
## 126  0.901754386  0.288933873 0.5741445 0.8113654 0.3855099 0.46248086
## 610  0.900877193  0.288056680 0.5719697 0.8112164 0.3831861 0.46177370
## 1465 0.900877193  0.290620783 0.5735849 0.8118577 0.3854426 0.46412214
## 129  0.900877193  0.293184885 0.5751880 0.8125000 0.3876880 0.46646341
## 168  0.900000000  0.292307692 0.5730337 0.8123515 0.3853853 0.46575342
## 598  0.899122807  0.291430499 0.5708955 0.8122029 0.3830984 0.46504559
## 410  0.899122807  0.293994602 0.5724907 0.8128469 0.3853377 0.46737481
## 219  0.898245614  0.293117409 0.5703704 0.8126984 0.3830688 0.46666667
## 1138 0.897368421  0.292240216 0.5682657 0.8125496 0.3808153 0.46596067
## 1359 0.897368421  0.294804318 0.5698529 0.8131955 0.3830485 0.46827795
## 4    0.897368421  0.297368421 0.5714286 0.8138425 0.3852711 0.47058824
## 1166 0.897368421  0.299932524 0.5729927 0.8144904 0.3874831 0.47289157
## 1089 0.896491228  0.299055331 0.5709091 0.8143426 0.3852517 0.47218045
## 542  0.896491228  0.301619433 0.5724638 0.8149920 0.3874558 0.47447447
## 1338 0.895614035  0.300742240 0.5703971 0.8148444 0.3852415 0.47376312
## 1259 0.895614035  0.303306343 0.5719424 0.8154952 0.3874377 0.47604790
## 1069 0.894736842  0.302429150 0.5698925 0.8153477 0.3852402 0.47533632
## 981  0.893859649  0.301551957 0.5678571 0.8152000 0.3830571 0.47462687
## 785  0.892982456  0.300674764 0.5658363 0.8150520 0.3808883 0.47391952
## 509  0.892105263  0.299797571 0.5638298 0.8149038 0.3787336 0.47321429
## 484  0.891228070  0.298920378 0.5618375 0.8147554 0.3765929 0.47251114
## 1100 0.890350877  0.298043185 0.5598592 0.8146067 0.3744659 0.47181009
## 801  0.889473684  0.297165992 0.5578947 0.8144578 0.3723526 0.47111111
## 740  0.888596491  0.296288799 0.5559441 0.8143087 0.3702527 0.47041420
## 939  0.887719298  0.295411606 0.5540070 0.8141593 0.3681663 0.46971935
## 677  0.886842105  0.294534413 0.5520833 0.8140097 0.3660930 0.46902655
## 912  0.885964912  0.293657220 0.5501730 0.8138598 0.3640328 0.46833579
## 313  0.885964912  0.296221323 0.5517241 0.8145161 0.3662403 0.47058824
## 324  0.885087719  0.295344130 0.5498282 0.8143664 0.3641946 0.46989721
## 1041 0.884210526  0.294466937 0.5479452 0.8142165 0.3621617 0.46920821
## 137  0.884210526  0.297031039 0.5494881 0.8148747 0.3643628 0.47144949
## 79   0.883333333  0.296153846 0.5476190 0.8147249 0.3623440 0.47076023
## 495  0.882456140  0.295276653 0.5457627 0.8145749 0.3603376 0.47007299
## 115  0.882456140  0.297840756 0.5472973 0.8152350 0.3625323 0.47230321
## 690  0.881578947  0.296963563 0.5454545 0.8150852 0.3605397 0.47161572
## 353  0.881578947  0.299527665 0.5469799 0.8157468 0.3627266 0.47383721
## 236  0.881578947  0.302091768 0.5484950 0.8164094 0.3649044 0.47605225
## 545  0.881578947  0.304655870 0.5500000 0.8170732 0.3670732 0.47826087
## 1160 0.881578947  0.307219973 0.5514950 0.8177380 0.3692330 0.48046310
## 1481 0.880701754  0.306342780 0.5496689 0.8175896 0.3672585 0.47976879
## 291  0.880701754  0.308906883 0.5511551 0.8182559 0.3694110 0.48196248
## 151  0.880701754  0.311470985 0.5526316 0.8189233 0.3715549 0.48414986
## 662  0.879824561  0.310593792 0.5508197 0.8187755 0.3695952 0.48345324
## 422  0.879824561  0.313157895 0.5522876 0.8194444 0.3717320 0.48563218
## 1514 0.878947368  0.312280702 0.5504886 0.8192968 0.3697854 0.48493544
## 1122 0.878070175  0.311403509 0.5487013 0.8191489 0.3678502 0.48424069
## 1476 0.878070175  0.313967611 0.5501618 0.8198198 0.3699816 0.48640916
## 186  0.878070175  0.316531714 0.5516129 0.8204918 0.3721047 0.48857143
## 307  0.878070175  0.319095816 0.5530547 0.8211649 0.3742196 0.49072753
## 204  0.878070175  0.321659919 0.5544872 0.8218391 0.3763263 0.49287749
## 535  0.878070175  0.324224022 0.5559105 0.8225144 0.3784249 0.49502134
## 854  0.877192982  0.323346829 0.5541401 0.8223684 0.3765085 0.49431818
## 174  0.876315789  0.322469636 0.5523810 0.8222222 0.3746032 0.49361702
## 1444 0.875438596  0.321592443 0.5506329 0.8220758 0.3727087 0.49291785
## 37   0.875438596  0.324156545 0.5520505 0.8227535 0.3748040 0.49504950
## 737  0.874561404  0.323279352 0.5503145 0.8226073 0.3729217 0.49435028
## 105  0.874561404  0.325843455 0.5517241 0.8232865 0.3750107 0.49647391
## 34   0.874561404  0.328407557 0.5531250 0.8239669 0.3770919 0.49859155
## 415  0.874561404  0.330971660 0.5545171 0.8246485 0.3791656 0.50070323
## 265  0.873684211  0.330094467 0.5527950 0.8245033 0.3772983 0.50000000
## 113  0.873684211  0.332658570 0.5541796 0.8251864 0.3793660 0.50210379
## 1024 0.872807018  0.331781377 0.5524691 0.8250415 0.3775106 0.50140056
## 14   0.872807018  0.334345479 0.5538462 0.8257261 0.3795723 0.50349650
## 1163 0.872807018  0.336909582 0.5552147 0.8264120 0.3816267 0.50558659
## 1221 0.871929825  0.336032389 0.5535168 0.8262677 0.3797845 0.50488145
## 1357 0.871929825  0.338596491 0.5548780 0.8269551 0.3818331 0.50696379
## 572  0.871052632  0.337719298 0.5531915 0.8268110 0.3800025 0.50625869
## 953  0.871052632  0.340283401 0.5545455 0.8275000 0.3820455 0.50833333
## 647  0.871052632  0.342847503 0.5558912 0.8281902 0.3840814 0.51040222
## 828  0.871052632  0.345411606 0.5572289 0.8288815 0.3861104 0.51246537
## 1251 0.871052632  0.347975709 0.5585586 0.8295739 0.3881325 0.51452282
## 1162 0.871052632  0.350539811 0.5598802 0.8302676 0.3901478 0.51657459
## 421  0.871052632  0.353103914 0.5611940 0.8309623 0.3921564 0.51862069
## 766  0.870175439  0.352226721 0.5595238 0.8308208 0.3903446 0.51790634
## 804  0.869298246  0.351349528 0.5578635 0.8306790 0.3885425 0.51719395
## 1148 0.868421053  0.350472335 0.5562130 0.8305369 0.3867499 0.51648352
## 1448 0.867543860  0.349595142 0.5545723 0.8303946 0.3849669 0.51577503
## 1325 0.866666667  0.348717949 0.5529412 0.8302521 0.3831933 0.51506849
## 875  0.865789474  0.347840756 0.5513196 0.8301093 0.3814290 0.51436389
## 33   0.865789474  0.350404858 0.5526316 0.8308081 0.3834397 0.51639344
## 480  0.864912281  0.349527665 0.5510204 0.8306655 0.3816860 0.51568895
## 1504 0.864035088  0.348650472 0.5494186 0.8305228 0.3799414 0.51498638
## 402  0.864035088  0.351214575 0.5507246 0.8312236 0.3819483 0.51700680
## 876  0.863157895  0.350337382 0.5491329 0.8310811 0.3802140 0.51630435
## 360  0.863157895  0.352901484 0.5504323 0.8317836 0.3822159 0.51831750
## 221  0.862280702  0.352024291 0.5488506 0.8316413 0.3804919 0.51761518
## 194  0.862280702  0.354588394 0.5501433 0.8323455 0.3824887 0.51962111
## 589  0.861403509  0.353711201 0.5485714 0.8322034 0.3807748 0.51891892
## 203  0.861403509  0.356275304 0.5498575 0.8329092 0.3827668 0.52091768
## 1268 0.860526316  0.355398111 0.5482955 0.8327674 0.3810629 0.52021563
## 1446 0.859649123  0.354520918 0.5467422 0.8326253 0.3793675 0.51951548
## 188  0.859649123  0.357085020 0.5480226 0.8333333 0.3813559 0.52150538
## 245  0.859649123  0.359649123 0.5492958 0.8340426 0.3833383 0.52348993
## 697  0.858771930  0.358771930 0.5477528 0.8339012 0.3816540 0.52278820
## 786  0.857894737  0.357894737 0.5462185 0.8337596 0.3799781 0.52208835
## 425  0.857894737  0.360458839 0.5474860 0.8344710 0.3819570 0.52406417
## 1169 0.857894737  0.363022942 0.5487465 0.8351836 0.3839301 0.52603471
## 187  0.857894737  0.365587045 0.5500000 0.8358974 0.3858974 0.52800000
## 19   0.857017544  0.364709852 0.5484765 0.8357571 0.3842335 0.52729694
## 486  0.856140351  0.363832659 0.5469613 0.8356164 0.3825778 0.52659574
## 856  0.855263158  0.362955466 0.5454545 0.8354756 0.3809301 0.52589641
## 445  0.855263158  0.365519568 0.5467033 0.8361921 0.3828954 0.52785146
## 1036 0.854385965  0.364642375 0.5452055 0.8360515 0.3812570 0.52715232
## 879  0.853508772  0.363765182 0.5437158 0.8359107 0.3796265 0.52645503
## 1039 0.852631579  0.362887989 0.5422343 0.8357696 0.3780039 0.52575958
## 954  0.852631579  0.365452092 0.5434783 0.8364888 0.3799671 0.52770449
## 1265 0.851754386  0.364574899 0.5420054 0.8363480 0.3783534 0.52700922
## 1346 0.850877193  0.363697706 0.5405405 0.8362069 0.3767474 0.52631579
## 591  0.850000000  0.362820513 0.5390836 0.8360656 0.3751491 0.52562418
## 851  0.849122807  0.361943320 0.5376344 0.8359240 0.3735584 0.52493438
## 516  0.848245614  0.361066127 0.5361930 0.8357822 0.3719752 0.52424640
## 896  0.847368421  0.360188934 0.5347594 0.8356401 0.3703995 0.52356021
## 859  0.846491228  0.359311741 0.5333333 0.8354978 0.3688312 0.52287582
## 1055 0.846491228  0.361875843 0.5345745 0.8362218 0.3707963 0.52480418
## 622  0.845614035  0.360998650 0.5331565 0.8360798 0.3692363 0.52411995
## 1171 0.845614035  0.363562753 0.5343915 0.8368056 0.3711971 0.52604167
## 695  0.844736842  0.362685560 0.5329815 0.8366638 0.3696453 0.52535761
## 984  0.843859649  0.361808367 0.5315789 0.8365217 0.3681007 0.52467532
## 1447 0.842982456  0.360931174 0.5301837 0.8363795 0.3665632 0.52399481
## 652  0.842982456  0.363495277 0.5314136 0.8371080 0.3685216 0.52590674
## 239  0.842982456  0.366059379 0.5326371 0.8378378 0.3704749 0.52781371
## 453  0.842982456  0.368623482 0.5338542 0.8385689 0.3724231 0.52971576
## 929  0.842105263  0.367746289 0.5324675 0.8384279 0.3708955 0.52903226
## 1236 0.841228070  0.366869096 0.5310881 0.8382867 0.3693748 0.52835052
## 521  0.840350877  0.365991903 0.5297158 0.8381452 0.3678610 0.52767053
## 908  0.839473684  0.365114710 0.5283505 0.8380035 0.3663540 0.52699229
## 694  0.838596491  0.364237517 0.5269923 0.8378615 0.3648538 0.52631579
## 373  0.837719298  0.363360324 0.5256410 0.8377193 0.3633603 0.52564103
## 523  0.836842105  0.362483131 0.5242967 0.8375768 0.3618735 0.52496799
## 359  0.836842105  0.365047233 0.5255102 0.8383128 0.3638230 0.52685422
## 1233 0.835964912  0.364170040 0.5241730 0.8381706 0.3623437 0.52618135
## 551  0.835087719  0.363292848 0.5228426 0.8380282 0.3608708 0.52551020
## 209  0.835087719  0.365856950 0.5240506 0.8387665 0.3628172 0.52738854
## 235  0.835087719  0.368421053 0.5252525 0.8395062 0.3647587 0.52926209
## 962  0.834210526  0.367543860 0.5239295 0.8393645 0.3632940 0.52858958
## 1043 0.833333333  0.366666667 0.5226131 0.8392226 0.3618357 0.52791878
## 206  0.833333333  0.369230769 0.5238095 0.8399646 0.3637742 0.52978454
## 134  0.833333333  0.371794872 0.5250000 0.8407080 0.3657080 0.53164557
## 304  0.833333333  0.374358974 0.5261845 0.8414526 0.3676372 0.53350190
## 318  0.833333333  0.376923077 0.5273632 0.8421986 0.3695618 0.53535354
## 1451 0.832456140  0.376045884 0.5260546 0.8420586 0.3681132 0.53467844
## 411  0.832456140  0.378609987 0.5272277 0.8428064 0.3700341 0.53652393
## 865  0.831578947  0.377732794 0.5259259 0.8426667 0.3685926 0.53584906
## 824  0.831578947  0.380296896 0.5270936 0.8434164 0.3705100 0.53768844
## 58   0.830701754  0.379419703 0.5257985 0.8432769 0.3690755 0.53701380
## 1245 0.829824561  0.378542510 0.5245098 0.8431373 0.3676471 0.53634085
## 1461 0.828947368  0.377665317 0.5232274 0.8429973 0.3662247 0.53566959
## 323  0.828070175  0.376788124 0.5219512 0.8428571 0.3648084 0.53500000
## 87   0.827192982  0.375910931 0.5206813 0.8427167 0.3633980 0.53433208
## 350  0.827192982  0.378475034 0.5218447 0.8434705 0.3653151 0.53615960
## 1235 0.826315789  0.377597841 0.5205811 0.8433303 0.3639115 0.53549191
## 893  0.825438596  0.376720648 0.5193237 0.8431900 0.3625136 0.53482587
## 1255 0.825438596  0.379284750 0.5204819 0.8439462 0.3644281 0.53664596
## 680  0.824561404  0.378407557 0.5192308 0.8438061 0.3630369 0.53598015
## 897  0.823684211  0.377530364 0.5179856 0.8436658 0.3616514 0.53531599
## 1173 0.822807018  0.376653171 0.5167464 0.8435252 0.3602716 0.53465347
## 998  0.821929825  0.375775978 0.5155131 0.8433843 0.3588975 0.53399258
## 312  0.821929825  0.378340081 0.5166667 0.8441441 0.3608108 0.53580247
## 751  0.821929825  0.380904184 0.5178147 0.8449053 0.3627200 0.53760789
## 1500 0.821052632  0.380026991 0.5165877 0.8447653 0.3613530 0.53694581
## 268  0.820175439  0.379149798 0.5153664 0.8446251 0.3599915 0.53628536
## 1252 0.820175439  0.381713900 0.5165094 0.8453888 0.3618982 0.53808354
## 717  0.819298246  0.380836707 0.5152941 0.8452489 0.3605430 0.53742331
## 693  0.818421053  0.379959514 0.5140845 0.8451087 0.3591932 0.53676471
## 1523 0.817543860  0.379082321 0.5128806 0.8449683 0.3578488 0.53610771
## 412  0.817543860  0.381646424 0.5140187 0.8457350 0.3597537 0.53789731
## 857  0.816666667  0.380769231 0.5128205 0.8455949 0.3584154 0.53724054
## 592  0.815789474  0.379892038 0.5116279 0.8454545 0.3570825 0.53658537
## 605  0.814912281  0.379014845 0.5104408 0.8453139 0.3557548 0.53593179
## 995  0.814035088  0.378137652 0.5092593 0.8451730 0.3544323 0.53527981
## 1214 0.813157895  0.377260459 0.5080831 0.8450319 0.3531150 0.53462940
## 210  0.813157895  0.379824561 0.5092166 0.8458029 0.3550195 0.53640777
## 586  0.812280702  0.378947368 0.5080460 0.8456621 0.3537081 0.53575758
## 1303 0.811403509  0.378070175 0.5068807 0.8455210 0.3524018 0.53510896
## 1341 0.810526316  0.377192982 0.5057208 0.8453797 0.3511005 0.53446191
## 158  0.809649123  0.376315789 0.5045662 0.8452381 0.3498043 0.53381643
## 156  0.808771930  0.375438596 0.5034169 0.8450962 0.3485131 0.53317250
## 1267 0.807894737  0.374561404 0.5022727 0.8449541 0.3472269 0.53253012
## 499  0.807017544  0.373684211 0.5011338 0.8448118 0.3459455 0.53188929
## 1127 0.806140351  0.372807018 0.5000000 0.8446691 0.3446691 0.53125000
## 396  0.806140351  0.375371120 0.5011287 0.8454462 0.3465749 0.53301321
## 1080 0.805263158  0.374493927 0.5000000 0.8453039 0.3453039 0.53237410
## 619  0.804385965  0.373616734 0.4988764 0.8451613 0.3440377 0.53173653
## 1196 0.803508772  0.372739541 0.4977578 0.8450185 0.3427763 0.53110048
## 878  0.802631579  0.371862348 0.4966443 0.8448753 0.3415196 0.53046595
## 366  0.802631579  0.374426451 0.4977679 0.8456562 0.3434240 0.53221957
## 83   0.802631579  0.376990553 0.4988864 0.8464385 0.3453249 0.53396901
## 800  0.801754386  0.376113360 0.4977778 0.8462963 0.3440741 0.53333333
## 978  0.800877193  0.375236167 0.4966741 0.8461538 0.3428279 0.53269917
## 1506 0.800000000  0.374358974 0.4955752 0.8460111 0.3415864 0.53206651
## 465  0.799122807  0.373481781 0.4944812 0.8458682 0.3403494 0.53143535
## 799  0.798245614  0.372604588 0.4933921 0.8457249 0.3391170 0.53080569
## 1234 0.797368421  0.371727395 0.4923077 0.8455814 0.3378891 0.53017751
## 1308 0.796491228  0.370850202 0.4912281 0.8454376 0.3366657 0.52955083
## 302  0.796491228  0.373414305 0.4923414 0.8462255 0.3385669 0.53128689
## 653  0.796491228  0.375978408 0.4934498 0.8470149 0.3404647 0.53301887
## 628  0.795614035  0.375101215 0.4923747 0.8468721 0.3392468 0.53239105
## 733  0.794736842  0.374224022 0.4913043 0.8467290 0.3380333 0.53176471
## 979  0.793859649  0.373346829 0.4902386 0.8465856 0.3368242 0.53113984
## 1200 0.792982456  0.372469636 0.4891775 0.8464419 0.3356194 0.53051643
## 1258 0.792982456  0.375033738 0.4902808 0.8472352 0.3375160 0.53223916
## 537  0.792982456  0.377597841 0.4913793 0.8480300 0.3394093 0.53395785
## 1007 0.792105263  0.376720648 0.4903226 0.8478873 0.3382099 0.53333333
## 1347 0.791228070  0.375843455 0.4892704 0.8477444 0.3370147 0.53271028
## 966  0.790350877  0.374966262 0.4882227 0.8476011 0.3358238 0.53208868
## 300  0.790350877  0.377530364 0.4893162 0.8483992 0.3377155 0.53379953
## 988  0.789473684  0.376653171 0.4882729 0.8482564 0.3365293 0.53317811
## 1052 0.788596491  0.375775978 0.4872340 0.8481132 0.3353473 0.53255814
## 655  0.787719298  0.374898785 0.4861996 0.8479698 0.3341694 0.53193961
## 201  0.787719298  0.377462888 0.4872881 0.8487713 0.3360594 0.53364269
## 1147 0.786842105  0.376585695 0.4862579 0.8486282 0.3348861 0.53302433
## 1275 0.785964912  0.375708502 0.4852321 0.8484848 0.3337169 0.53240741
## 983  0.785087719  0.374831309 0.4842105 0.8483412 0.3325518 0.53179191
## 229  0.785087719  0.377395412 0.4852941 0.8491461 0.3344402 0.53348730
## 863  0.784210526  0.376518219 0.4842767 0.8490028 0.3332796 0.53287197
## 452  0.784210526  0.379082321 0.4853556 0.8498099 0.3351655 0.53456221
## 341  0.784210526  0.381646424 0.4864301 0.8506185 0.3370485 0.53624856
## 1340 0.783333333  0.380769231 0.4854167 0.8504762 0.3358929 0.53563218
## 805  0.782456140  0.379892038 0.4844075 0.8503337 0.3347411 0.53501722
## 255  0.782456140  0.382456140 0.4854772 0.8511450 0.3366222 0.53669725
## 16   0.781578947  0.381578947 0.4844720 0.8510029 0.3354749 0.53608247
## 1485 0.780701754  0.380701754 0.4834711 0.8508604 0.3343315 0.53546911
## 1342 0.779824561  0.379824561 0.4824742 0.8507177 0.3331919 0.53485714
## 1374 0.778947368  0.378947368 0.4814815 0.8505747 0.3320562 0.53424658
## 1141 0.778070175  0.378070175 0.4804928 0.8504314 0.3309243 0.53363740
## 630  0.777192982  0.377192982 0.4795082 0.8502879 0.3297961 0.53302961
## 1027 0.776315789  0.376315789 0.4785276 0.8501441 0.3286717 0.53242321
## 1253 0.776315789  0.378879892 0.4795918 0.8509615 0.3305534 0.53409091
## 963  0.775438596  0.378002699 0.4786151 0.8508181 0.3294332 0.53348468
## 1442 0.774561404  0.377125506 0.4776423 0.8506744 0.3283167 0.53287982
## 955  0.774561404  0.379689609 0.4787018 0.8514947 0.3301965 0.53454134
## 1180 0.773684211  0.378812416 0.4777328 0.8513514 0.3290841 0.53393665
## 53   0.773684211  0.381376518 0.4787879 0.8521739 0.3309618 0.53559322
## 322  0.772807018  0.380499325 0.4778226 0.8520309 0.3298535 0.53498871
## 1458 0.771929825  0.379622132 0.4768612 0.8518877 0.3287489 0.53438557
## 759  0.771929825  0.382186235 0.4779116 0.8527132 0.3306248 0.53603604
## 1307 0.771052632  0.381309042 0.4769539 0.8525703 0.3295242 0.53543307
## 949  0.771052632  0.383873144 0.4780000 0.8533981 0.3313981 0.53707865
## 519  0.770175439  0.382995951 0.4770459 0.8532556 0.3303015 0.53647587
## 1139 0.769298246  0.382118758 0.4760956 0.8531128 0.3292085 0.53587444
## 9    0.769298246  0.384682861 0.4771372 0.8539435 0.3310807 0.53751400
## 198  0.769298246  0.387246964 0.4781746 0.8547758 0.3329504 0.53914989
## 1184 0.768421053  0.386369771 0.4772277 0.8546341 0.3318619 0.53854749
## 118  0.768421053  0.388933873 0.4782609 0.8554688 0.3337296 0.54017857
## 443  0.768421053  0.391497976 0.4792899 0.8563050 0.3355949 0.54180602
## 1441 0.767543860  0.390620783 0.4783465 0.8561644 0.3345108 0.54120267
## 1222 0.766666667  0.389743590 0.4774067 0.8560235 0.3334302 0.54060067
## 461  0.765789474  0.388866397 0.4764706 0.8558824 0.3323529 0.54000000
## 406  0.765789474  0.391430499 0.4774951 0.8567223 0.3342174 0.54162042
## 277  0.764912281  0.390553306 0.4765625 0.8565815 0.3331440 0.54101996
## 673  0.764035088  0.389676113 0.4756335 0.8564405 0.3320740 0.54042082
## 609  0.763157895  0.388798920 0.4747082 0.8562992 0.3310074 0.53982301
## 149  0.763157895  0.391363023 0.4757282 0.8571429 0.3328710 0.54143646
## 1278 0.762280702  0.390485830 0.4748062 0.8570020 0.3318082 0.54083885
## 180  0.761403509  0.389608637 0.4738878 0.8568608 0.3307486 0.54024256
## 388  0.760526316  0.388731444 0.4729730 0.8567194 0.3296923 0.53964758
## 55   0.760526316  0.391295547 0.4739884 0.8575668 0.3315552 0.54125413
## 1059 0.760526316  0.393859649 0.4750000 0.8584158 0.3334158 0.54285714
## 1277 0.759649123  0.392982456 0.4740883 0.8582755 0.3323638 0.54226125
## 299  0.759649123  0.395546559 0.4750958 0.8591270 0.3342228 0.54385965
## 1143 0.758771930  0.394669366 0.4741874 0.8589871 0.3331745 0.54326396
## 1306 0.757894737  0.393792173 0.4732824 0.8588469 0.3321294 0.54266958
## 1403 0.757017544  0.392914980 0.4723810 0.8587065 0.3310874 0.54207650
## 1345 0.756140351  0.392037787 0.4714829 0.8585657 0.3300486 0.54148472
## 536  0.756140351  0.394601889 0.4724858 0.8594217 0.3319075 0.54307525
## 1022 0.755263158  0.393724696 0.4715909 0.8592814 0.3308723 0.54248366
## 367  0.755263158  0.396288799 0.4725898 0.8601399 0.3327297 0.54406964
## 261  0.754385965  0.395411606 0.4716981 0.8600000 0.3316981 0.54347826
## 1088 0.753508772  0.394534413 0.4708098 0.8598599 0.3306697 0.54288817
## 1155 0.752631579  0.393657220 0.4699248 0.8597194 0.3296443 0.54229935
## 293  0.752631579  0.396221323 0.4709193 0.8605817 0.3315011 0.54387866
## 614  0.751754386  0.395344130 0.4700375 0.8604418 0.3304792 0.54329004
## 1172 0.751754386  0.397908232 0.4710280 0.8613065 0.3323346 0.54486486
## 375  0.750877193  0.397031039 0.4701493 0.8611670 0.3313163 0.54427646
## 363  0.750877193  0.399595142 0.4711359 0.8620342 0.3331702 0.54584682
## 696  0.750000000  0.398717949 0.4702602 0.8618952 0.3321554 0.54525862
## 952  0.750000000  0.401282051 0.4712430 0.8627649 0.3340079 0.54682454
## 17   0.749122807  0.400404858 0.4703704 0.8626263 0.3329966 0.54623656
## 914  0.748245614  0.399527665 0.4695009 0.8624874 0.3319883 0.54564984
## 2    0.747368421  0.398650472 0.4686347 0.8623482 0.3309829 0.54506438
## 1343 0.746491228  0.397773279 0.4677716 0.8622087 0.3299804 0.54448017
## 189  0.746491228  0.400337382 0.4687500 0.8630832 0.3318332 0.54603854
## 417  0.746491228  0.402901484 0.4697248 0.8639594 0.3336842 0.54759358
## 345  0.746491228  0.405465587 0.4706960 0.8648374 0.3355334 0.54914530
## 625  0.745614035  0.404588394 0.4698355 0.8646999 0.3345354 0.54855923
## 1498 0.744736842  0.403711201 0.4689781 0.8645621 0.3335402 0.54797441
## 64   0.744736842  0.406275304 0.4699454 0.8654434 0.3353888 0.54952077
## 199  0.744736842  0.408839406 0.4709091 0.8663265 0.3372356 0.55106383
## 1047 0.743859649  0.407962213 0.4700544 0.8661900 0.3362444 0.55047821
## 1489 0.742982456  0.407085020 0.4692029 0.8660532 0.3352561 0.54989384
## 426  0.742982456  0.409649123 0.4701627 0.8669396 0.3371024 0.55143160
## 675  0.742105263  0.408771930 0.4693141 0.8668033 0.3361174 0.55084746
## 1000 0.741228070  0.407894737 0.4684685 0.8666667 0.3351351 0.55026455
## 119  0.741228070  0.410458839 0.4694245 0.8675565 0.3369809 0.55179704
## 672  0.740350877  0.409581646 0.4685817 0.8674203 0.3360020 0.55121436
## 1239 0.739473684  0.408704453 0.4677419 0.8672840 0.3350259 0.55063291
## 1486 0.738596491  0.407827260 0.4669052 0.8671473 0.3340525 0.55005269
## 1295 0.737719298  0.406950067 0.4660714 0.8670103 0.3330817 0.54947368
## 444  0.737719298  0.409514170 0.4670232 0.8679051 0.3349282 0.55099895
## 1456 0.736842105  0.408636977 0.4661922 0.8677686 0.3339608 0.55042017
## 576  0.735964912  0.407759784 0.4653641 0.8676319 0.3329960 0.54984260
## 553  0.735087719  0.406882591 0.4645390 0.8674948 0.3320338 0.54926625
## 787  0.734210526  0.406005398 0.4637168 0.8673575 0.3310743 0.54869110
## 1254 0.734210526  0.408569501 0.4646643 0.8682573 0.3329216 0.55020921
## 587  0.733333333  0.407692308 0.4638448 0.8681205 0.3319653 0.54963427
## 1313 0.732456140  0.406815115 0.4630282 0.8679834 0.3310115 0.54906054
## 485  0.731578947  0.405937922 0.4622144 0.8678460 0.3300604 0.54848801
## 489  0.730701754  0.405060729 0.4614035 0.8677083 0.3291118 0.54791667
## 1264 0.729824561  0.404183536 0.4605954 0.8675704 0.3281658 0.54734651
## 1530 0.728947368  0.403306343 0.4597902 0.8674322 0.3272224 0.54677755
## 142  0.728947368  0.405870445 0.4607330 0.8683386 0.3290715 0.54828660
## 163  0.728070175  0.404993252 0.4599303 0.8682008 0.3281312 0.54771784
## 1369 0.728070175  0.407557355 0.4608696 0.8691099 0.3299795 0.54922280
## 467  0.728070175  0.410121457 0.4618056 0.8700210 0.3318265 0.55072464
## 1126 0.727192982  0.409244265 0.4610052 0.8698846 0.3308898 0.55015512
## 1380 0.726315789  0.408367072 0.4602076 0.8697479 0.3299555 0.54958678
## 565  0.725438596  0.407489879 0.4594128 0.8696109 0.3290237 0.54901961
## 1324 0.724561404  0.406612686 0.4586207 0.8694737 0.3280944 0.54845361
## 552  0.723684211  0.405735493 0.4578313 0.8693361 0.3271675 0.54788877
## 54   0.723684211  0.408299595 0.4587629 0.8702532 0.3290161 0.54938272
## 66   0.722807018  0.407422402 0.4579760 0.8701162 0.3280921 0.54881809
## 823  0.722807018  0.409986505 0.4589041 0.8710359 0.3299401 0.55030801
## 1406 0.721929825  0.409109312 0.4581197 0.8708995 0.3290191 0.54974359
## 987  0.721052632  0.408232119 0.4573379 0.8707627 0.3281006 0.54918033
## 502  0.720175439  0.407354926 0.4565588 0.8706257 0.3271844 0.54861822
## 1168 0.720175439  0.409919028 0.4574830 0.8715499 0.3290329 0.55010225
## 192  0.719298246  0.409041835 0.4567063 0.8714134 0.3281197 0.54954035
## 969  0.718421053  0.408164642 0.4559322 0.8712766 0.3272088 0.54897959
## 230  0.718421053  0.410728745 0.4568528 0.8722045 0.3290573 0.55045872
## 382  0.717543860  0.409851552 0.4560811 0.8720682 0.3281493 0.54989817
## 931  0.716666667  0.408974359 0.4553120 0.8719317 0.3272437 0.54933876
## 369  0.715789474  0.408097166 0.4545455 0.8717949 0.3263403 0.54878049
## 1431 0.714912281  0.407219973 0.4537815 0.8716578 0.3254393 0.54822335
## 1522 0.714035088  0.406342780 0.4530201 0.8715203 0.3245405 0.54766734
## 408  0.714035088  0.408906883 0.4539363 0.8724544 0.3263908 0.54913880
## 855  0.713157895  0.408029690 0.4531773 0.8723176 0.3254949 0.54858300
## 1457 0.712280702  0.407152497 0.4524207 0.8721805 0.3246012 0.54802831
## 450  0.712280702  0.409716599 0.4533333 0.8731183 0.3264516 0.54949495
## 491  0.711403509  0.408839406 0.4525790 0.8729817 0.3255607 0.54894046
## 1218 0.710526316  0.407962213 0.4518272 0.8728448 0.3246721 0.54838710
## 121  0.709649123  0.407085020 0.4510779 0.8727077 0.3237856 0.54783484
## 339  0.709649123  0.409649123 0.4519868 0.8736501 0.3256369 0.54929577
## 440  0.708771930  0.408771930 0.4512397 0.8735135 0.3247532 0.54874372
## 314  0.708771930  0.411336032 0.4521452 0.8744589 0.3266041 0.55020080
## 1496 0.707894737  0.410458839 0.4514003 0.8743229 0.3257232 0.54964895
## 130  0.707894737  0.413022942 0.4523026 0.8752711 0.3275738 0.55110220
## 913  0.707017544  0.412145749 0.4515599 0.8751357 0.3266957 0.55055055
## 401  0.707017544  0.414709852 0.4524590 0.8760870 0.3285460 0.55200000
## 234  0.707017544  0.417273954 0.4533552 0.8770403 0.3303954 0.55344655
## 781  0.706140351  0.416396761 0.4526144 0.8769063 0.3295207 0.55289421
## 153  0.706140351  0.418960864 0.4535073 0.8778626 0.3313699 0.55433699
## 222  0.705263158  0.418083671 0.4527687 0.8777293 0.3304980 0.55378486
## 541  0.705263158  0.420647773 0.4536585 0.8786885 0.3323471 0.55522388
## 20   0.705263158  0.423211876 0.4545455 0.8796499 0.3341953 0.55666004
## 701  0.704385965  0.422334683 0.4538088 0.8795181 0.3333268 0.55610725
## 133  0.704385965  0.424898785 0.4546926 0.8804825 0.3351750 0.55753968
## 691  0.703508772  0.424021592 0.4539580 0.8803513 0.3343093 0.55698712
## 611  0.702631579  0.423144399 0.4532258 0.8802198 0.3334456 0.55643564
## 749  0.702631579  0.425708502 0.4541063 0.8811881 0.3352944 0.55786350
## 1150 0.701754386  0.424831309 0.4533762 0.8810573 0.3344335 0.55731225
## 1159 0.700877193  0.423954116 0.4526485 0.8809261 0.3335746 0.55676209
## 1450 0.700000000  0.423076923 0.4519231 0.8807947 0.3327178 0.55621302
## 977  0.699122807  0.422199730 0.4512000 0.8806630 0.3318630 0.55566502
## 169  0.698245614  0.421322537 0.4504792 0.8805310 0.3310102 0.55511811
## 1028 0.697368421  0.420445344 0.4497608 0.8803987 0.3301594 0.55457227
## 290  0.697368421  0.423009447 0.4506369 0.8813747 0.3320117 0.55599214
## 539  0.697368421  0.425573549 0.4515103 0.8823529 0.3338633 0.55740922
## 1445 0.696491228  0.424696356 0.4507937 0.8822222 0.3330159 0.55686275
## 1228 0.695614035  0.423819163 0.4500792 0.8820912 0.3321705 0.55631734
## 1190 0.694736842  0.422941970 0.4493671 0.8819599 0.3313270 0.55577299
## 76   0.693859649  0.422064777 0.4486572 0.8818283 0.3304855 0.55522972
## 376  0.692982456  0.421187584 0.4479495 0.8816964 0.3296460 0.55468750
## 665  0.692105263  0.420310391 0.4472441 0.8815642 0.3288083 0.55414634
## 1164 0.692105263  0.422874494 0.4481132 0.8825503 0.3306635 0.55555556
## 648  0.692105263  0.425438596 0.4489796 0.8835386 0.3325182 0.55696203
## 646  0.692105263  0.428002699 0.4498433 0.8845291 0.3343724 0.55836576
## 416  0.692105263  0.430566802 0.4507042 0.8855219 0.3362261 0.55976676
## 478  0.691228070  0.429689609 0.4500000 0.8853933 0.3353933 0.55922330
## 687  0.690350877  0.428812416 0.4492980 0.8852643 0.3345623 0.55868089
## 643  0.690350877  0.431376518 0.4501558 0.8862613 0.3364170 0.56007752
## 1009 0.689473684  0.430499325 0.4494557 0.8861330 0.3355887 0.55953533
## 398  0.689473684  0.433063428 0.4503106 0.8871332 0.3374437 0.56092843
## 852  0.688596491  0.432186235 0.4496124 0.8870056 0.3366181 0.56038647
## 1183 0.687719298  0.431309042 0.4489164 0.8868778 0.3357942 0.55984556
## 1197 0.686842105  0.430431849 0.4482226 0.8867497 0.3349723 0.55930569
## 754  0.686842105  0.432995951 0.4490741 0.8877551 0.3368292 0.56069364
## 584  0.685964912  0.432118758 0.4483821 0.8876277 0.3360098 0.56015399
## 466  0.685087719  0.431241565 0.4476923 0.8875000 0.3351923 0.55961538
## 446  0.685087719  0.433805668 0.4485407 0.8885097 0.3370504 0.56099904
## 347  0.685087719  0.436369771 0.4493865 0.8895216 0.3389081 0.56238004
## 303  0.685087719  0.438933873 0.4502297 0.8905359 0.3407656 0.56375839
## 1185 0.684210526  0.438056680 0.4495413 0.8904110 0.3399522 0.56321839
## 569  0.683333333  0.437179487 0.4488550 0.8902857 0.3391407 0.56267943
## 43   0.683333333  0.439743590 0.4496951 0.8913043 0.3409995 0.56405354
## 397  0.683333333  0.442307692 0.4505327 0.8923253 0.3428580 0.56542502
## 1384 0.682456140  0.441430499 0.4498480 0.8922018 0.3420499 0.56488550
## 35   0.681578947  0.440553306 0.4491654 0.8920781 0.3412435 0.56434700
## 1276 0.680701754  0.439676113 0.4484848 0.8919540 0.3404389 0.56380952
## 1033 0.679824561  0.438798920 0.4478064 0.8918297 0.3396360 0.56327307
## 1006 0.678947368  0.437921727 0.4471299 0.8917051 0.3388350 0.56273764
## 379  0.678070175  0.437044534 0.4464555 0.8915802 0.3380357 0.56220323
## 835  0.677192982  0.436167341 0.4457831 0.8914550 0.3372381 0.56166983
## 101  0.677192982  0.438731444 0.4466165 0.8924855 0.3391021 0.56303318
## 997  0.676315789  0.437854251 0.4459459 0.8923611 0.3383071 0.56250000
## 1478 0.675438596  0.436977058 0.4452774 0.8922364 0.3375137 0.56196783
## 806  0.674561404  0.436099865 0.4446108 0.8921114 0.3367221 0.56143667
## 891  0.673684211  0.435222672 0.4439462 0.8919861 0.3359323 0.56090652
## 557  0.672807018  0.434345479 0.4432836 0.8918605 0.3351440 0.56037736
## 600  0.671929825  0.433468286 0.4426230 0.8917346 0.3343575 0.55984920
## 161  0.671052632  0.432591093 0.4419643 0.8916084 0.3335727 0.55932203
## 1379 0.670175439  0.431713900 0.4413076 0.8914819 0.3327895 0.55879586
## 143  0.669298246  0.430836707 0.4406528 0.8913551 0.3320080 0.55827068
## 522  0.668421053  0.429959514 0.4400000 0.8912281 0.3312281 0.55774648
## 1423 0.667543860  0.429082321 0.4393491 0.8911007 0.3304498 0.55722326
## 28   0.666666667  0.428205128 0.4387001 0.8909730 0.3296732 0.55670103
## 577  0.665789474  0.427327935 0.4380531 0.8908451 0.3288982 0.55617978
## 947  0.665789474  0.429892038 0.4388807 0.8918919 0.3307726 0.55753040
## 362  0.665789474  0.432456140 0.4397059 0.8929412 0.3326471 0.55887850
## 1525 0.664912281  0.431578947 0.4390602 0.8928151 0.3318753 0.55835668
## 1353 0.664035088  0.430701754 0.4384164 0.8926887 0.3311051 0.55783582
## 1263 0.664035088  0.433265857 0.4392387 0.8937426 0.3329813 0.55917987
## 315  0.664035088  0.435829960 0.4400585 0.8947991 0.3348575 0.56052142
## 1216 0.663157895  0.434952767 0.4394161 0.8946746 0.3340906 0.56000000
## 297  0.663157895  0.437516869 0.4402332 0.8957346 0.3359678 0.56133829
## 689  0.662280702  0.436639676 0.4395924 0.8956109 0.3352033 0.56081708
## 599  0.661403509  0.435762483 0.4389535 0.8954869 0.3344404 0.56029685
## 657  0.660526316  0.434885290 0.4383164 0.8953627 0.3336791 0.55977757
## 951  0.660526316  0.437449393 0.4391304 0.8964286 0.3355590 0.56111111
## 644  0.660526316  0.440013495 0.4399421 0.8974970 0.3374391 0.56244218
## 745  0.659649123  0.439136302 0.4393064 0.8973747 0.3366811 0.56192237
## 494  0.658771930  0.438259109 0.4386724 0.8972521 0.3359245 0.56140351
## 1032 0.657894737  0.437381916 0.4380403 0.8971292 0.3351695 0.56088561
## 948  0.657894737  0.439946019 0.4388489 0.8982036 0.3370525 0.56221198
## 830  0.657894737  0.442510121 0.4396552 0.8992806 0.3389357 0.56353591
## 1284 0.657017544  0.441632928 0.4390244 0.8991597 0.3381841 0.56301748
## 22   0.656140351  0.440755735 0.4383954 0.8990385 0.3374339 0.56250000
## 807  0.655263158  0.439878543 0.4377682 0.8989170 0.3366852 0.56198347
## 1428 0.654385965  0.439001350 0.4371429 0.8987952 0.3359380 0.56146789
## 985  0.653508772  0.438124157 0.4365193 0.8986731 0.3351924 0.56095325
## 923  0.652631579  0.437246964 0.4358974 0.8985507 0.3344482 0.56043956
## 1320 0.651754386  0.436369771 0.4352774 0.8984281 0.3337054 0.55992681
## 152  0.651754386  0.438933873 0.4360795 0.8995157 0.3355953 0.56124314
## 892  0.650877193  0.438056680 0.4354610 0.8993939 0.3348549 0.56073059
## 392  0.650000000  0.437179487 0.4348442 0.8992718 0.3341160 0.56021898
## 267  0.649122807  0.436302294 0.4342291 0.8991495 0.3333786 0.55970830
## 819  0.649122807  0.438866397 0.4350282 0.9002433 0.3352716 0.56102004
## 57   0.648245614  0.437989204 0.4344147 0.9001218 0.3345365 0.56050955
## 1415 0.647368421  0.437112011 0.4338028 0.9000000 0.3338028 0.56000000
## 162  0.646491228  0.436234818 0.4331927 0.8998779 0.3330706 0.55949137
## 739  0.645614035  0.435357625 0.4325843 0.8997555 0.3323398 0.55898367
## 269  0.644736842  0.434480432 0.4319776 0.8996328 0.3316104 0.55847688
## 1257 0.644736842  0.437044534 0.4327731 0.9007353 0.3335084 0.55978261
## 1287 0.643859649  0.436167341 0.4321678 0.9006135 0.3327813 0.55927602
## 331  0.642982456  0.435290148 0.4315642 0.9004914 0.3320556 0.55877034
## 1008 0.642105263  0.434412955 0.4309623 0.9003690 0.3313313 0.55826558
## 1015 0.641228070  0.433535762 0.4303621 0.9002463 0.3306084 0.55776173
## 1205 0.640350877  0.432658570 0.4297636 0.9001233 0.3298869 0.55725879
## 626  0.639473684  0.431781377 0.4291667 0.9000000 0.3291667 0.55675676
## 664  0.638596491  0.430904184 0.4285714 0.8998764 0.3284478 0.55625563
## 1199 0.637719298  0.430026991 0.4279778 0.8997525 0.3277303 0.55575540
## 590  0.636842105  0.429149798 0.4273859 0.8996283 0.3270141 0.55525606
## 1483 0.635964912  0.428272605 0.4267956 0.8995037 0.3262993 0.55475763
## 107  0.635964912  0.430836707 0.4275862 0.9006211 0.3282073 0.55605381
## 1509 0.635087719  0.429959514 0.4269972 0.9004975 0.3274948 0.55555556
## 1225 0.634210526  0.429082321 0.4264099 0.9003736 0.3267835 0.55505819
## 666  0.633333333  0.428205128 0.4258242 0.9002494 0.3260736 0.55456172
## 837  0.632456140  0.427327935 0.4252401 0.9001248 0.3253649 0.55406613
## 1291 0.631578947  0.426450742 0.4246575 0.9000000 0.3246575 0.55357143
## 434  0.630701754  0.425573549 0.4240766 0.8998748 0.3239515 0.55307761
## 358  0.629824561  0.424696356 0.4234973 0.8997494 0.3232466 0.55258467
## 262  0.628947368  0.423819163 0.4229195 0.8996236 0.3225431 0.55209261
## 273  0.628070175  0.422941970 0.4223433 0.8994975 0.3218408 0.55160142
## 663  0.627192982  0.422064777 0.4217687 0.8993711 0.3211398 0.55111111
## 1279 0.626315789  0.421187584 0.4211957 0.8992443 0.3204400 0.55062167
## 368  0.625438596  0.420310391 0.4206242 0.8991173 0.3197414 0.55013310
## 864  0.624561404  0.419433198 0.4200542 0.8989899 0.3190441 0.54964539
## 403  0.624561404  0.421997301 0.4208390 0.9001264 0.3209654 0.55093003
## 1437 0.623684211  0.421120108 0.4202703 0.9000000 0.3202703 0.55044248
## 1149 0.622807018  0.420242915 0.4197031 0.8998733 0.3195764 0.54995579
## 1208 0.621929825  0.419365722 0.4191375 0.8997462 0.3188837 0.54946996
## 784  0.621052632  0.418488529 0.4185734 0.8996188 0.3181922 0.54898500
## 274  0.620175439  0.417611336 0.4180108 0.8994911 0.3175018 0.54850088
## 272  0.619298246  0.416734143 0.4174497 0.8993631 0.3168127 0.54801762
## 337  0.619298246  0.419298246 0.4182306 0.9005102 0.3187408 0.54929577
## 431  0.618421053  0.418421053 0.4176707 0.9003831 0.3180538 0.54881266
## 1121 0.617543860  0.417543860 0.4171123 0.9002558 0.3173681 0.54833040
## 1167 0.617543860  0.420107962 0.4178905 0.9014085 0.3192990 0.54960492
## 527  0.616666667  0.419230769 0.4173333 0.9012821 0.3186154 0.54912281
## 1249 0.615789474  0.418353576 0.4167776 0.9011553 0.3179330 0.54864154
## 669  0.614912281  0.417476383 0.4162234 0.9010283 0.3172517 0.54816112
## 767  0.614035088  0.416599190 0.4156707 0.9009009 0.3165716 0.54768154
## 427  0.613157895  0.415721997 0.4151194 0.9007732 0.3158926 0.54720280
## 1499 0.612280702  0.414844804 0.4145695 0.9006452 0.3152147 0.54672489
## 1368 0.612280702  0.417408907 0.4153439 0.9018088 0.3171527 0.54799302
## 822  0.612280702  0.419973009 0.4161162 0.9029754 0.3190917 0.54925894
## 582  0.611403509  0.419095816 0.4155673 0.9028497 0.3184170 0.54878049
## 238  0.611403509  0.421659919 0.4163373 0.9040208 0.3203580 0.55004352
## 890  0.610526316  0.420782726 0.4157895 0.9038961 0.3196856 0.54956522
## 1433 0.609649123  0.419905533 0.4152431 0.9037711 0.3190142 0.54908775
## 1314 0.608771930  0.419028340 0.4146982 0.9036458 0.3183440 0.54861111
## 424  0.608771930  0.421592443 0.4154653 0.9048240 0.3202893 0.54986990
## 1250 0.607894737  0.420715250 0.4149215 0.9046997 0.3196212 0.54939341
## 871  0.607017544  0.419838057 0.4143791 0.9045752 0.3189542 0.54891775
## 159  0.606140351  0.418960864 0.4138381 0.9044503 0.3182884 0.54844291
## 68   0.606140351  0.421524966 0.4146023 0.9056356 0.3202380 0.54969749
## 1398 0.605263158  0.420647773 0.4140625 0.9055118 0.3195743 0.54922280
## 1464 0.605263158  0.423211876 0.4148244 0.9067017 0.3215262 0.55047455
## 148  0.605263158  0.425775978 0.4155844 0.9078947 0.3234792 0.55172414
## 831  0.604385965  0.424898785 0.4150454 0.9077734 0.3228188 0.55124892
## 874  0.603508772  0.424021592 0.4145078 0.9076517 0.3221595 0.55077453
## 720  0.602631579  0.423144399 0.4139715 0.9075297 0.3215013 0.55030095
## 335  0.601754386  0.422267206 0.4134367 0.9074074 0.3208441 0.54982818
## 100  0.600877193  0.421390013 0.4129032 0.9072848 0.3201880 0.54935622
## 496  0.600000000  0.420512821 0.4123711 0.9071618 0.3195329 0.54888508
## 654  0.599122807  0.419635628 0.4118404 0.9070385 0.3188789 0.54841474
## 1220 0.598245614  0.418758435 0.4113111 0.9069149 0.3182259 0.54794521
## 21   0.597368421  0.417881242 0.4107831 0.9067909 0.3175740 0.54747648
## 642  0.597368421  0.420445344 0.4115385 0.9080000 0.3195385 0.54871795
## 1266 0.596491228  0.419568151 0.4110115 0.9078772 0.3188887 0.54824936
## 635  0.595614035  0.418690958 0.4104859 0.9077540 0.3182399 0.54778157
## 957  0.595614035  0.421255061 0.4112388 0.9089692 0.3202080 0.54901961
## 1098 0.594736842  0.420377868 0.4107143 0.9088472 0.3195615 0.54855196
## 692  0.593859649  0.419500675 0.4101911 0.9087248 0.3189159 0.54808511
## 1518 0.592982456  0.418623482 0.4096692 0.9086022 0.3182714 0.54761905
## 713  0.592105263  0.417746289 0.4091487 0.9084791 0.3176278 0.54715378
## 332  0.591228070  0.416869096 0.4086294 0.9083558 0.3169852 0.54668930
## 986  0.590350877  0.415991903 0.4081115 0.9082321 0.3163437 0.54622561
## 645  0.590350877  0.418556005 0.4088608 0.9094595 0.3183202 0.54745763
## 1439 0.589473684  0.417678812 0.4083439 0.9093369 0.3176808 0.54699407
## 404  0.588596491  0.416801619 0.4078283 0.9092141 0.3170424 0.54653130
## 1207 0.587719298  0.415924426 0.4073140 0.9090909 0.3164049 0.54606932
## 97   0.586842105  0.415047233 0.4068010 0.9089674 0.3157684 0.54560811
## 471  0.585964912  0.414170040 0.4062893 0.9088435 0.3151328 0.54514768
## 469  0.585964912  0.416734143 0.4070352 0.9100817 0.3171169 0.54637437
## 925  0.585087719  0.415856950 0.4065245 0.9099591 0.3164835 0.54591407
## 63   0.585087719  0.418421053 0.4072682 0.9112022 0.3184704 0.54713805
## 556  0.584210526  0.417543860 0.4067584 0.9110807 0.3178392 0.54667788
## 721  0.583333333  0.416666667 0.4062500 0.9109589 0.3172089 0.54621849
## 46   0.582456140  0.415789474 0.4057428 0.9108368 0.3165796 0.54575987
## 433  0.581578947  0.414912281 0.4052369 0.9107143 0.3159512 0.54530201
## 1194 0.580701754  0.414035088 0.4047323 0.9105915 0.3153237 0.54484493
## 220  0.579824561  0.413157895 0.4042289 0.9104683 0.3146972 0.54438861
## 932  0.578947368  0.412280702 0.4037267 0.9103448 0.3140715 0.54393305
## 601  0.578070175  0.411403509 0.4032258 0.9102210 0.3134468 0.54347826
## 791  0.577192982  0.410526316 0.4027261 0.9100968 0.3128230 0.54302423
## 25   0.577192982  0.413090418 0.4034653 0.9113573 0.3148227 0.54424040
## 763  0.576315789  0.412213225 0.4029666 0.9112344 0.3142010 0.54378649
## 250  0.575438596  0.411336032 0.4024691 0.9111111 0.3135802 0.54333333
## 593  0.574561404  0.410458839 0.4019729 0.9109875 0.3129604 0.54288093
## 843  0.573684211  0.409581646 0.4014778 0.9108635 0.3123413 0.54242928
## 8    0.573684211  0.412145749 0.4022140 0.9121339 0.3143479 0.54364090
## 390  0.572807018  0.411268556 0.4017199 0.9120112 0.3137311 0.54318937
## 497  0.571929825  0.410391363 0.4012270 0.9118881 0.3131151 0.54273859
## 296  0.571929825  0.412955466 0.4019608 0.9131653 0.3151261 0.54394693
## 399  0.571929825  0.415519568 0.4026928 0.9144460 0.3171388 0.54515327
## 915  0.571052632  0.414642375 0.4022005 0.9143258 0.3165263 0.54470199
## 656  0.570175439  0.413765182 0.4017094 0.9142053 0.3159147 0.54425145
## 841  0.569298246  0.412887989 0.4012195 0.9140845 0.3153040 0.54380165
## 774  0.568421053  0.412010796 0.4007308 0.9139633 0.3146941 0.54335260
## 686  0.567543860  0.411133603 0.4002433 0.9138418 0.3140851 0.54290429
## 1502 0.566666667  0.410256410 0.3997570 0.9137199 0.3134769 0.54245672
## 1140 0.565789474  0.409379217 0.3992718 0.9135977 0.3128696 0.54200988
## 627  0.564912281  0.408502024 0.3987879 0.9134752 0.3122631 0.54156379
## 649  0.564912281  0.411066127 0.3995157 0.9147727 0.3142885 0.54276316
## 1111 0.564035088  0.410188934 0.3990326 0.9146515 0.3136841 0.54231717
## 946  0.564035088  0.412753036 0.3997585 0.9159544 0.3157129 0.54351396
## 48   0.563157895  0.411875843 0.3992762 0.9158345 0.3151108 0.54306809
## 393  0.562280702  0.410998650 0.3987952 0.9157143 0.3145095 0.54262295
## 1067 0.561403509  0.410121457 0.3983153 0.9155937 0.3139090 0.54217854
## 27   0.560526316  0.409244265 0.3978365 0.9154728 0.3133093 0.54173486
## 688  0.559649123  0.408367072 0.3973589 0.9153515 0.3127105 0.54129191
## 1386 0.558771930  0.407489879 0.3968825 0.9152299 0.3121124 0.54084967
## 510  0.557894737  0.406612686 0.3964072 0.9151079 0.3115151 0.54040816
## 124  0.557894737  0.409176788 0.3971292 0.9164265 0.3135557 0.54159869
## 637  0.557017544  0.408299595 0.3966547 0.9163059 0.3129606 0.54115729
## 15   0.556140351  0.407422402 0.3961814 0.9161850 0.3123664 0.54071661
## 575  0.555263158  0.406545209 0.3957092 0.9160637 0.3117729 0.54027665
## 1136 0.554385965  0.405668016 0.3952381 0.9159420 0.3111801 0.53983740
## 944  0.553508772  0.404790823 0.3947681 0.9158200 0.3105882 0.53939886
## 1436 0.552631579  0.403913630 0.3942993 0.9156977 0.3099970 0.53896104
## 32   0.552631579  0.406477733 0.3950178 0.9170306 0.3120484 0.54014599
## 1238 0.551754386  0.405600540 0.3945498 0.9169096 0.3114594 0.53970827
## 834  0.550877193  0.404723347 0.3940828 0.9167883 0.3108712 0.53927126
## 1091 0.550000000  0.403846154 0.3936170 0.9166667 0.3102837 0.53883495
## 549  0.549122807  0.402968961 0.3931523 0.9165447 0.3096970 0.53839935
## 1119 0.548245614  0.402091768 0.3926887 0.9164223 0.3091110 0.53796446
## 524  0.547368421  0.401214575 0.3922261 0.9162996 0.3085257 0.53753027
## 1186 0.546491228  0.400337382 0.3917647 0.9161765 0.3079412 0.53709677
## 86   0.545614035  0.399460189 0.3913043 0.9160530 0.3073574 0.53666398
## 880  0.544736842  0.398582996 0.3908451 0.9159292 0.3067743 0.53623188
## 167  0.543859649  0.397705803 0.3903869 0.9158050 0.3061919 0.53580048
## 327  0.542982456  0.396828610 0.3899297 0.9156805 0.3056102 0.53536977
## 1490 0.542105263  0.395951417 0.3894737 0.9155556 0.3050292 0.53493976
## 1497 0.541228070  0.395074224 0.3890187 0.9154303 0.3044490 0.53451043
## 1001 0.540350877  0.394197031 0.3885648 0.9153046 0.3038694 0.53408180
## 102  0.540350877  0.396761134 0.3892774 0.9166667 0.3059441 0.53525641
## 1355 0.539473684  0.395883941 0.3888242 0.9165425 0.3053667 0.53482786
## 910  0.538596491  0.395006748 0.3883721 0.9164179 0.3047900 0.53440000
## 1505 0.537719298  0.394129555 0.3879210 0.9162930 0.3042140 0.53397282
## 320  0.537719298  0.396693657 0.3886311 0.9176647 0.3062958 0.53514377
## 1394 0.536842105  0.395816464 0.3881808 0.9175412 0.3057220 0.53471668
## 65   0.536842105  0.398380567 0.3888889 0.9189189 0.3078078 0.53588517
## 114  0.536842105  0.400944669 0.3895954 0.9203008 0.3098961 0.53705179
## 574  0.535964912  0.400067476 0.3891455 0.9201807 0.3093262 0.53662420
## 778  0.535087719  0.399190283 0.3886967 0.9200603 0.3087570 0.53619730
## 1151 0.534210526  0.398313090 0.3882488 0.9199396 0.3081884 0.53577107
## 374  0.533333333  0.397435897 0.3878021 0.9198185 0.3076205 0.53534551
## 965  0.532456140  0.396558704 0.3873563 0.9196970 0.3070533 0.53492063
## 99   0.531578947  0.395681511 0.3869116 0.9195751 0.3064867 0.53449643
## 1086 0.530701754  0.394804318 0.3864679 0.9194529 0.3059208 0.53407290
## 1360 0.530701754  0.397368421 0.3871707 0.9208524 0.3080230 0.53523357
## 125  0.530701754  0.399932524 0.3878719 0.9222561 0.3101280 0.53639241
## 613  0.529824561  0.399055331 0.3874286 0.9221374 0.3095660 0.53596838
## 607  0.528947368  0.398178138 0.3869863 0.9220183 0.3090046 0.53554502
## 756  0.528947368  0.400742240 0.3876853 0.9234303 0.3111156 0.53670087
## 1142 0.528070175  0.399865047 0.3872437 0.9233129 0.3105566 0.53627760
## 621  0.527192982  0.398987854 0.3868032 0.9231951 0.3099983 0.53585500
## 679  0.526315789  0.398110661 0.3863636 0.9230769 0.3094406 0.53543307
## 214  0.525438596  0.397233468 0.3859251 0.9229584 0.3088835 0.53501180
## 252  0.525438596  0.399797571 0.3866213 0.9243827 0.3110040 0.53616352
## 710  0.524561404  0.398920378 0.3861835 0.9242658 0.3104493 0.53574234
## 407  0.524561404  0.401484480 0.3868778 0.9256966 0.3125744 0.53689168
## 1031 0.523684211  0.400607287 0.3864407 0.9255814 0.3120221 0.53647059
## 813  0.522807018  0.399730094 0.3860045 0.9254658 0.3114704 0.53605016
## 423  0.522807018  0.402294197 0.3866967 0.9269051 0.3136019 0.53719655
## 191  0.521929825  0.401417004 0.3862613 0.9267913 0.3130525 0.53677621
## 960  0.521052632  0.400539811 0.3858268 0.9266771 0.3125038 0.53635653
## 1103 0.520175439  0.399662618 0.3853933 0.9265625 0.3119558 0.53593750
## 233  0.520175439  0.402226721 0.3860831 0.9280125 0.3140956 0.53708041
## 305  0.520175439  0.404790823 0.3867713 0.9294671 0.3162384 0.53822153
## 457  0.519298246  0.403913630 0.3863382 0.9293564 0.3156945 0.53780203
## 1519 0.518421053  0.403036437 0.3859060 0.9292453 0.3151513 0.53738318
## 940  0.517543860  0.402159244 0.3854749 0.9291339 0.3146087 0.53696498
## 919  0.516666667  0.401282051 0.3850446 0.9290221 0.3140667 0.53654743
## 394  0.515789474  0.400404858 0.3846154 0.9289100 0.3135253 0.53613054
## 511  0.514912281  0.399527665 0.3841871 0.9287975 0.3129846 0.53571429
## 456  0.514035088  0.398650472 0.3837597 0.9286846 0.3124444 0.53529868
## 12   0.514035088  0.401214575 0.3844444 0.9301587 0.3146032 0.53643411
## 429  0.513157895  0.400337382 0.3840178 0.9300477 0.3140655 0.53601859
## 773  0.512280702  0.399460189 0.3835920 0.9299363 0.3135283 0.53560372
## 615  0.511403509  0.398582996 0.3831672 0.9298246 0.3129918 0.53518948
## 1108 0.510526316  0.397705803 0.3827434 0.9297125 0.3124558 0.53477589
## 683  0.509649123  0.396828610 0.3823204 0.9296000 0.3119204 0.53436293
## 1391 0.508771930  0.395951417 0.3818985 0.9294872 0.3113856 0.53395062
## 1246 0.507894737  0.395074224 0.3814774 0.9293740 0.3108514 0.53353894
## 608  0.507017544  0.394197031 0.3810573 0.9292605 0.3103177 0.53312789
## 260  0.507017544  0.396761134 0.3817382 0.9307568 0.3124950 0.53425712
## 651  0.507017544  0.399325236 0.3824176 0.9322581 0.3146756 0.53538462
## 103  0.506140351  0.398448043 0.3819978 0.9321486 0.3141464 0.53497310
## 849  0.505263158  0.397570850 0.3815789 0.9320388 0.3136178 0.53456221
## 1333 0.504385965  0.396693657 0.3811610 0.9319287 0.3130897 0.53415196
## 7    0.503508772  0.395816464 0.3807440 0.9318182 0.3125622 0.53374233
## 1114 0.502631579  0.394939271 0.3803279 0.9317073 0.3120352 0.53333333
## 547  0.502631579  0.397503374 0.3810044 0.9332248 0.3142291 0.53445636
## 386  0.501754386  0.396626181 0.3805889 0.9331158 0.3137047 0.53404744
## 671  0.500877193  0.395748988 0.3801743 0.9330065 0.3131808 0.53363914
## 1513 0.500000000  0.394871795 0.3797606 0.9328969 0.3126575 0.53323147
## 241  0.500000000  0.397435897 0.3804348 0.9344262 0.3148610 0.53435115
## 636  0.499122807  0.396558704 0.3800217 0.9343186 0.3143403 0.53394355
## 1206 0.498245614  0.395681511 0.3796095 0.9342105 0.3138201 0.53353659
## 901  0.497368421  0.394804318 0.3791983 0.9341021 0.3133004 0.53313024
## 475  0.496491228  0.393927126 0.3787879 0.9339934 0.3127813 0.53272451
## 325  0.495614035  0.393049933 0.3783784 0.9338843 0.3122627 0.53231939
## 217  0.494736842  0.392172740 0.3779698 0.9337748 0.3117446 0.53191489
## 385  0.493859649  0.391295547 0.3775620 0.9336650 0.3112270 0.53151101
## 477  0.492982456  0.390418354 0.3771552 0.9335548 0.3107100 0.53110774
## 365  0.492982456  0.392982456 0.3778256 0.9351082 0.3129338 0.53222138
## 492  0.492105263  0.392105263 0.3774194 0.9350000 0.3124194 0.53181818
## 1072 0.491228070  0.391228070 0.3770140 0.9348915 0.3119054 0.53141559
## 1182 0.490350877  0.390350877 0.3766094 0.9347826 0.3113921 0.53101362
## 612  0.489473684  0.389473684 0.3762058 0.9346734 0.3108792 0.53061224
## 1507 0.488596491  0.388596491 0.3758030 0.9345638 0.3103668 0.53021148
## 999  0.487719298  0.387719298 0.3754011 0.9344538 0.3098549 0.52981132
## 1389 0.486842105  0.386842105 0.3750000 0.9343434 0.3093434 0.52941176
## 1040 0.485964912  0.385964912 0.3745998 0.9342327 0.3088325 0.52901281
## 301  0.485964912  0.388529015 0.3752665 0.9358108 0.3110773 0.53012048
## 1524 0.485087719  0.387651822 0.3748669 0.9357022 0.3105691 0.52972160
## 1132 0.484210526  0.386774629 0.3744681 0.9355932 0.3100613 0.52932331
## 603  0.483333333  0.385897436 0.3740701 0.9354839 0.3095540 0.52892562
## 30   0.482456140  0.385020243 0.3736730 0.9353741 0.3090472 0.52852853
## 228  0.481578947  0.384143050 0.3732768 0.9352641 0.3085408 0.52813203
## 533  0.480701754  0.383265857 0.3728814 0.9351536 0.3080349 0.52773613
## 364  0.480701754  0.385829960 0.3735450 0.9367521 0.3102971 0.52883895
## 1023 0.479824561  0.384952767 0.3731501 0.9366438 0.3097939 0.52844311
## 420  0.479824561  0.387516869 0.3738120 0.9382504 0.3120625 0.52954375
## 1188 0.478947368  0.386639676 0.3734177 0.9381443 0.3115621 0.52914798
## 1092 0.478070175  0.385762483 0.3730242 0.9380379 0.3110621 0.52875280
## 1016 0.477192982  0.384885290 0.3726316 0.9379310 0.3105626 0.52835821
## 1378 0.476315789  0.384008097 0.3722397 0.9378238 0.3100636 0.52796421
## 458  0.475438596  0.383130904 0.3718487 0.9377163 0.3095650 0.52757079
## 634  0.474561404  0.382253711 0.3714586 0.9376083 0.3090669 0.52717796
## 1213 0.473684211  0.381376518 0.3710692 0.9375000 0.3085692 0.52678571
## 1400 0.472807018  0.380499325 0.3706806 0.9373913 0.3080719 0.52639405
## 178  0.471929825  0.379622132 0.3702929 0.9372822 0.3075751 0.52600297
## 123  0.471929825  0.382186235 0.3709509 0.9389180 0.3098689 0.52709725
## 172  0.471052632  0.381309042 0.3705637 0.9388112 0.3093749 0.52670623
## 1312 0.470175439  0.380431849 0.3701773 0.9387040 0.3088813 0.52631579
## 1491 0.469298246  0.379554656 0.3697917 0.9385965 0.3083882 0.52592593
## 1517 0.468421053  0.378677463 0.3694069 0.9384886 0.3078954 0.52553664
## 1125 0.467543860  0.377800270 0.3690229 0.9383803 0.3074032 0.52514793
## 1174 0.466666667  0.376923077 0.3686397 0.9382716 0.3069113 0.52475979
## 348  0.466666667  0.379487179 0.3692946 0.9399293 0.3092239 0.52584934
## 504  0.465789474  0.378609987 0.3689119 0.9398230 0.3087349 0.52546125
## 1014 0.464912281  0.377732794 0.3685300 0.9397163 0.3082463 0.52507375
## 1226 0.464035088  0.376855601 0.3681489 0.9396092 0.3077582 0.52468681
## 1434 0.463157895  0.375978408 0.3677686 0.9395018 0.3072704 0.52430044
## 1118 0.462280702  0.375101215 0.3673891 0.9393939 0.3067830 0.52391464
## 1087 0.461403509  0.374224022 0.3670103 0.9392857 0.3062960 0.52352941
## 280  0.460526316  0.373346829 0.3666323 0.9391771 0.3058094 0.52314475
## 704  0.459649123  0.372469636 0.3662551 0.9390681 0.3053232 0.52276065
## 1161 0.459649123  0.375033738 0.3669065 0.9407540 0.3076605 0.52384446
## 91   0.458771930  0.374156545 0.3665298 0.9406475 0.3071773 0.52346041
## 788  0.457894737  0.373279352 0.3661538 0.9405405 0.3066944 0.52307692
## 1105 0.457017544  0.372402159 0.3657787 0.9404332 0.3062119 0.52269400
## 1176 0.456140351  0.371524966 0.3654043 0.9403255 0.3057298 0.52231163
## 39   0.456140351  0.374089069 0.3660532 0.9420290 0.3080822 0.52339181
## 902  0.455263158  0.373211876 0.3656793 0.9419238 0.3076030 0.52300950
## 958  0.454385965  0.372334683 0.3653061 0.9418182 0.3071243 0.52262774
## 41   0.454385965  0.374898785 0.3659531 0.9435337 0.3094868 0.52370532
## 85   0.453508772  0.374021592 0.3655804 0.9434307 0.3090111 0.52332362
## 227  0.452631579  0.373144399 0.3652085 0.9433272 0.3085358 0.52294246
## 26   0.451754386  0.372267206 0.3648374 0.9432234 0.3080608 0.52256186
## 81   0.450877193  0.371390013 0.3644670 0.9431193 0.3075863 0.52218182
## 1377 0.450000000  0.370512821 0.3640974 0.9430147 0.3071121 0.52180233
## 719  0.449122807  0.369635628 0.3637285 0.9429098 0.3066382 0.52142338
## 764  0.448245614  0.368758435 0.3633603 0.9428044 0.3061648 0.52104499
## 1042 0.447368421  0.367881242 0.3629929 0.9426987 0.3056916 0.52066715
## 877  0.446491228  0.367004049 0.3626263 0.9425926 0.3052189 0.52028986
## 1326 0.445614035  0.366126856 0.3622603 0.9424861 0.3047464 0.51991311
## 1305 0.444736842  0.365249663 0.3618952 0.9423792 0.3042743 0.51953690
## 514  0.443859649  0.364372470 0.3615307 0.9422719 0.3038026 0.51916124
## 144  0.443859649  0.366936572 0.3621730 0.9440299 0.3062029 0.52023121
## 1175 0.442982456  0.366059379 0.3618090 0.9439252 0.3057343 0.51985560
## 1129 0.442105263  0.365182186 0.3614458 0.9438202 0.3052660 0.51948052
## 1511 0.441228070  0.364304993 0.3610832 0.9437148 0.3047981 0.51910598
## 581  0.440350877  0.363427800 0.3607214 0.9436090 0.3043305 0.51873199
## 887  0.439473684  0.362550607 0.3603604 0.9435028 0.3038632 0.51835853
## 1329 0.438596491  0.361673414 0.3600000 0.9433962 0.3033962 0.51798561
## 558  0.437719298  0.360796221 0.3596404 0.9432892 0.3029296 0.51761323
## 38   0.437719298  0.363360324 0.3602794 0.9450758 0.3053552 0.51867816
## 326  0.436842105  0.362483131 0.3599202 0.9449715 0.3048918 0.51830581
## 1330 0.435964912  0.361605938 0.3595618 0.9448669 0.3044287 0.51793400
## 1438 0.435087719  0.360728745 0.3592040 0.9447619 0.3039659 0.51756272
## 762  0.434210526  0.359851552 0.3588469 0.9446565 0.3035034 0.51719198
## 112  0.434210526  0.362415655 0.3594836 0.9464627 0.3059463 0.51825340
## 1116 0.433333333  0.361538462 0.3591270 0.9463602 0.3054871 0.51788269
## 1318 0.432456140  0.360661269 0.3587711 0.9462572 0.3050283 0.51751251
## 1017 0.431578947  0.359784076 0.3584158 0.9461538 0.3045697 0.51714286
## 328  0.430701754  0.358906883 0.3580613 0.9460501 0.3041114 0.51677373
## 1520 0.429824561  0.358029690 0.3577075 0.9459459 0.3036535 0.51640514
## 1418 0.428947368  0.357152497 0.3573544 0.9458414 0.3031958 0.51603706
## 534  0.428070175  0.356275304 0.3570020 0.9457364 0.3027384 0.51566952
## 1430 0.427192982  0.355398111 0.3566502 0.9456311 0.3022813 0.51530249
## 579  0.426315789  0.354520918 0.3562992 0.9455253 0.3018245 0.51493599
## 1422 0.425438596  0.353643725 0.3559489 0.9454191 0.3013680 0.51457001
## 387  0.424561404  0.352766532 0.3555992 0.9453125 0.3009117 0.51420455
## 1421 0.423684211  0.351889339 0.3552502 0.9452055 0.3004557 0.51383960
## 1104 0.422807018  0.351012146 0.3549020 0.9450980 0.3000000 0.51347518
## 678  0.421929825  0.350134953 0.3545544 0.9449902 0.2995445 0.51311127
## 1302 0.421052632  0.349257760 0.3542074 0.9448819 0.2990893 0.51274788
## 1273 0.420175439  0.348380567 0.3538612 0.9447732 0.2986344 0.51238500
## 903  0.419298246  0.347503374 0.3535156 0.9446640 0.2981797 0.51202263
## 377  0.418421053  0.346626181 0.3531707 0.9445545 0.2977252 0.51166078
## 71   0.418421053  0.349190283 0.3538012 0.9464286 0.3002297 0.51271186
## 1231 0.417543860  0.348313090 0.3534567 0.9463221 0.2997787 0.51235004
## 1229 0.416666667  0.347435897 0.3531128 0.9462151 0.2993280 0.51198872
## 1416 0.415789474  0.346558704 0.3527697 0.9461078 0.2988775 0.51162791
## 1094 0.414912281  0.345681511 0.3524272 0.9460000 0.2984272 0.51126761
## 459  0.414035088  0.344804318 0.3520854 0.9458918 0.2979771 0.51090781
## 94   0.413157895  0.343927126 0.3517442 0.9457831 0.2975273 0.51054852
## 1073 0.412280702  0.343049933 0.3514037 0.9456740 0.2970777 0.51018974
## 1283 0.411403509  0.342172740 0.3510638 0.9455645 0.2966283 0.50983146
## 616  0.410526316  0.341295547 0.3507246 0.9454545 0.2961792 0.50947368
## 181  0.410526316  0.343859649 0.3513514 0.9473684 0.2987198 0.51051893
## 508  0.409649123  0.342982456 0.3510125 0.9472617 0.2982742 0.51016118
## 92   0.408771930  0.342105263 0.3506744 0.9471545 0.2978288 0.50980392
## 1110 0.407894737  0.341228070 0.3503369 0.9470468 0.2973837 0.50944717
## 1315 0.407017544  0.340350877 0.3500000 0.9469388 0.2969388 0.50909091
## 975  0.406140351  0.339473684 0.3496638 0.9468303 0.2964941 0.50873515
## 488  0.405263158  0.338596491 0.3493282 0.9467213 0.2960495 0.50837989
## 49   0.405263158  0.341160594 0.3499521 0.9486653 0.2986174 0.50942080
## 858  0.404385965  0.340283401 0.3496169 0.9485597 0.2981765 0.50906555
## 224  0.403508772  0.339406208 0.3492823 0.9484536 0.2977359 0.50871080
## 706  0.402631579  0.338529015 0.3489484 0.9483471 0.2972955 0.50835655
## 842  0.401754386  0.337651822 0.3486151 0.9482402 0.2968553 0.50800278
## 1282 0.400877193  0.336774629 0.3482824 0.9481328 0.2964152 0.50764951
## 838  0.400000000  0.335897436 0.3479504 0.9480249 0.2959754 0.50729673
## 544  0.400000000  0.338461538 0.3485714 0.9500000 0.2985714 0.50833333
## 1247 0.399122807  0.337584345 0.3482398 0.9498956 0.2981354 0.50798057
## 1304 0.398245614  0.336707152 0.3479087 0.9497908 0.2976995 0.50762829
## 333  0.397368421  0.335829960 0.3475783 0.9496855 0.2972639 0.50727651
## 378  0.396491228  0.334952767 0.3472486 0.9495798 0.2968284 0.50692521
## 24   0.395614035  0.334075574 0.3469194 0.9494737 0.2963931 0.50657439
## 699  0.394736842  0.333198381 0.3465909 0.9493671 0.2959580 0.50622407
## 922  0.393859649  0.332321188 0.3462630 0.9492600 0.2955231 0.50587422
## 82   0.393859649  0.334885290 0.3468809 0.9512712 0.2981521 0.50690608
## 1237 0.392982456  0.334008097 0.3465534 0.9511677 0.2977211 0.50655625
## 1101 0.392105263  0.333130904 0.3462264 0.9510638 0.2972902 0.50620690
## 309  0.392105263  0.335695007 0.3468426 0.9530917 0.2999343 0.50723639
## 286  0.391228070  0.334817814 0.3465160 0.9529915 0.2995075 0.50688705
## 761  0.390350877  0.333940621 0.3461900 0.9528908 0.2990808 0.50653820
## 1133 0.389473684  0.333063428 0.3458647 0.9527897 0.2986544 0.50618982
## 682  0.388596491  0.332186235 0.3455399 0.9526882 0.2982281 0.50584192
## 84   0.387719298  0.331309042 0.3452158 0.9525862 0.2978020 0.50549451
## 383  0.386842105  0.330431849 0.3448922 0.9524838 0.2973760 0.50514756
## 1038 0.385964912  0.329554656 0.3445693 0.9523810 0.2969502 0.50480110
## 70   0.385964912  0.332118758 0.3451824 0.9544469 0.2996293 0.50582591
## 472  0.385087719  0.331241565 0.3448598 0.9543478 0.2992076 0.50547945
## 1272 0.384210526  0.330364372 0.3445378 0.9542484 0.2987862 0.50513347
## 1102 0.383333333  0.329487179 0.3442164 0.9541485 0.2983649 0.50478796
## 506  0.382456140  0.328609987 0.3438956 0.9540481 0.2979438 0.50444293
## 1512 0.381578947  0.327732794 0.3435754 0.9539474 0.2975228 0.50409836
## 520  0.380701754  0.326855601 0.3432558 0.9538462 0.2971020 0.50375427
## 920  0.379824561  0.325978408 0.3429368 0.9537445 0.2966813 0.50341064
## 712  0.378947368  0.325101215 0.3426184 0.9536424 0.2962608 0.50306748
## 271  0.378070175  0.324224022 0.3423006 0.9535398 0.2958404 0.50272480
## 832  0.377192982  0.323346829 0.3419833 0.9534368 0.2954201 0.50238257
## 1056 0.377192982  0.325910931 0.3425926 0.9555556 0.2981481 0.50340136
## 1413 0.376315789  0.325033738 0.3422757 0.9554566 0.2977322 0.50305914
## 503  0.375438596  0.324156545 0.3419593 0.9553571 0.2973165 0.50271739
## 1424 0.374561404  0.323279352 0.3416436 0.9552573 0.2969009 0.50237610
## 1134 0.373684211  0.322402159 0.3413284 0.9551570 0.2964854 0.50203528
## 1356 0.372807018  0.321524966 0.3410138 0.9550562 0.2960700 0.50169492
## 29   0.371929825  0.320647773 0.3406998 0.9549550 0.2956548 0.50135501
## 164  0.371052632  0.319770580 0.3403864 0.9548533 0.2952397 0.50101557
## 95   0.370175439  0.318893387 0.3400735 0.9547511 0.2948247 0.50067659
## 1417 0.369298246  0.318016194 0.3397612 0.9546485 0.2944098 0.50033807
## 1339 0.368421053  0.317139001 0.3394495 0.9545455 0.2939950 0.50000000
## 93   0.367543860  0.316261808 0.3391384 0.9544419 0.2935803 0.49966239
## 513  0.366666667  0.315384615 0.3388278 0.9543379 0.2931657 0.49932524
## 968  0.365789474  0.314507422 0.3385178 0.9542334 0.2927513 0.49898854
## 884  0.364912281  0.313630229 0.3382084 0.9541284 0.2923368 0.49865229
## 555  0.364035088  0.312753036 0.3378995 0.9540230 0.2919225 0.49831650
## 505  0.363157895  0.311875843 0.3375912 0.9539171 0.2915083 0.49798116
## 934  0.362280702  0.310998650 0.3372835 0.9538106 0.2910941 0.49764627
## 850  0.361403509  0.310121457 0.3369763 0.9537037 0.2906800 0.49731183
## 1335 0.360526316  0.309244265 0.3366697 0.9535963 0.2902660 0.49697784
## 213  0.359649123  0.308367072 0.3363636 0.9534884 0.2898520 0.49664430
## 992  0.358771930  0.307489879 0.3360581 0.9533800 0.2894381 0.49631120
## 1227 0.357894737  0.306612686 0.3357532 0.9532710 0.2890242 0.49597855
## 817  0.357017544  0.305735493 0.3354488 0.9531616 0.2886104 0.49564635
## 1405 0.356140351  0.304858300 0.3351449 0.9530516 0.2881966 0.49531459
## 732  0.355263158  0.303981107 0.3348416 0.9529412 0.2877828 0.49498328
## 811  0.354385965  0.303103914 0.3345389 0.9528302 0.2873691 0.49465241
## 583  0.353508772  0.302226721 0.3342367 0.9527187 0.2869554 0.49432198
## 90   0.352631579  0.301349528 0.3339350 0.9526066 0.2865417 0.49399199
## 51   0.351754386  0.300472335 0.3336339 0.9524941 0.2861280 0.49366244
## 753  0.351754386  0.303036437 0.3342342 0.9547619 0.2889961 0.49466667
## 1484 0.350877193  0.302159244 0.3339334 0.9546539 0.2885873 0.49433711
## 742  0.350000000  0.301282051 0.3336331 0.9545455 0.2881785 0.49400799
## 1493 0.349122807  0.300404858 0.3333333 0.9544365 0.2877698 0.49367931
## 1297 0.348245614  0.299527665 0.3330341 0.9543269 0.2873610 0.49335106
## 311  0.348245614  0.302091768 0.3336323 0.9566265 0.2902588 0.49435216
## 1453 0.347368421  0.301214575 0.3333333 0.9565217 0.2898551 0.49402390
## 157  0.346491228  0.300337382 0.3330349 0.9564165 0.2894514 0.49369608
## 1298 0.345614035  0.299460189 0.3327370 0.9563107 0.2890477 0.49336870
## 1192 0.344736842  0.298582996 0.3324397 0.9562044 0.2886441 0.49304175
## 959  0.343859649  0.297705803 0.3321429 0.9560976 0.2882404 0.49271523
## 1071 0.342982456  0.296828610 0.3318466 0.9559902 0.2878368 0.49238915
## 926  0.342105263  0.295951417 0.3315508 0.9558824 0.2874332 0.49206349
## 166  0.341228070  0.295074224 0.3312556 0.9557740 0.2870295 0.49173827
## 933  0.340350877  0.294197031 0.3309609 0.9556650 0.2866259 0.49141347
## 437  0.339473684  0.293319838 0.3306667 0.9555556 0.2862222 0.49108911
## 1010 0.338596491  0.292442645 0.3303730 0.9554455 0.2858185 0.49076517
## 1407 0.337719298  0.291565452 0.3300799 0.9553350 0.2854148 0.49044166
## 88   0.336842105  0.290688259 0.3297872 0.9552239 0.2850111 0.49011858
## 31   0.335964912  0.289811066 0.3294951 0.9551122 0.2846073 0.48979592
## 1515 0.335087719  0.288933873 0.3292035 0.9550000 0.2842035 0.48947368
## 74   0.334210526  0.288056680 0.3289125 0.9548872 0.2837997 0.48915187
## 1198 0.333333333  0.287179487 0.3286219 0.9547739 0.2833958 0.48883049
## 515  0.332456140  0.286302294 0.3283319 0.9546599 0.2829918 0.48850952
## 765  0.331578947  0.285425101 0.3280423 0.9545455 0.2825878 0.48818898
## 741  0.330701754  0.284547908 0.3277533 0.9544304 0.2821837 0.48786885
## 888  0.329824561  0.283670715 0.3274648 0.9543147 0.2817795 0.48754915
## 580  0.328947368  0.282793522 0.3271768 0.9541985 0.2813753 0.48722986
## 344  0.328947368  0.285357625 0.3277680 0.9566327 0.2844007 0.48821990
## 620  0.328070175  0.284480432 0.3274802 0.9565217 0.2840020 0.48790059
## 1372 0.327192982  0.283603239 0.3271930 0.9564103 0.2836032 0.48758170
## 1153 0.326315789  0.282726046 0.3269062 0.9562982 0.2832044 0.48726323
## 1131 0.325438596  0.281848853 0.3266200 0.9561856 0.2828055 0.48694517
## 1296 0.324561404  0.280971660 0.3263342 0.9560724 0.2824066 0.48662753
## 1109 0.323684211  0.280094467 0.3260490 0.9559585 0.2820075 0.48631030
## 1112 0.322807018  0.279217274 0.3257642 0.9558442 0.2816083 0.48599349
## 1241 0.321929825  0.278340081 0.3254799 0.9557292 0.2812091 0.48567708
## 1495 0.321052632  0.277462888 0.3251962 0.9556136 0.2808097 0.48536109
## 1097 0.320175439  0.276585695 0.3249129 0.9554974 0.2804103 0.48504551
## 316  0.320175439  0.279149798 0.3255004 0.9580052 0.2835057 0.48602989
## 77   0.319298246  0.278272605 0.3252174 0.9578947 0.2831121 0.48571429
## 961  0.318421053  0.277395412 0.3249348 0.9577836 0.2827185 0.48539909
## 518  0.317543860  0.276518219 0.3246528 0.9576720 0.2823247 0.48508431
## 1388 0.316666667  0.275641026 0.3243712 0.9575597 0.2819309 0.48476993
## 1075 0.315789474  0.274763833 0.3240901 0.9574468 0.2815369 0.48445596
## 435  0.314912281  0.273886640 0.3238095 0.9573333 0.2811429 0.48414239
## 1488 0.314035088  0.273009447 0.3235294 0.9572193 0.2807487 0.48382924
## 1487 0.313157895  0.272132254 0.3232498 0.9571046 0.2803543 0.48351648
## 550  0.312280702  0.271255061 0.3229706 0.9569892 0.2799599 0.48320413
## 59   0.311403509  0.270377868 0.3226920 0.9568733 0.2795653 0.48289219
## 1480 0.310526316  0.269500675 0.3224138 0.9567568 0.2791705 0.48258065
## 1327 0.309649123  0.268623482 0.3221361 0.9566396 0.2787757 0.48226950
## 1331 0.308771930  0.267746289 0.3218589 0.9565217 0.2783806 0.48195876
## 758  0.308771930  0.270310391 0.3224420 0.9591281 0.2815700 0.48293625
## 916  0.307894737  0.269433198 0.3221649 0.9590164 0.2811813 0.48262548
## 78   0.307017544  0.268556005 0.3218884 0.9589041 0.2807925 0.48231511
## 1099 0.306140351  0.267678812 0.3216123 0.9587912 0.2804036 0.48200514
## 900  0.305263158  0.266801619 0.3213368 0.9586777 0.2800144 0.48169557
## 231  0.305263158  0.269365722 0.3219178 0.9613260 0.2832438 0.48267009
## 1288 0.304385965  0.268488529 0.3216424 0.9612188 0.2828613 0.48236049
## 283  0.303508772  0.267611336 0.3213675 0.9611111 0.2824786 0.48205128
## 1004 0.302631579  0.266734143 0.3210931 0.9610028 0.2820959 0.48174247
## 602  0.301754386  0.265856950 0.3208191 0.9608939 0.2817130 0.48143406
## 1479 0.300877193  0.264979757 0.3205456 0.9607843 0.2813299 0.48112604
## 1366 0.300877193  0.267543860 0.3211244 0.9634831 0.2846075 0.48209719
## 918  0.300000000  0.266666667 0.3208511 0.9633803 0.2842313 0.48178914
## 735  0.299122807  0.265789474 0.3205782 0.9632768 0.2838551 0.48148148
## 36   0.298245614  0.264912281 0.3203059 0.9631728 0.2834787 0.48117422
## 371  0.297368421  0.264035088 0.3200340 0.9630682 0.2831021 0.48086735
## 1334 0.296491228  0.263157895 0.3197625 0.9629630 0.2827255 0.48056087
## 3    0.295614035  0.262280702 0.3194915 0.9628571 0.2823487 0.48025478
## 750  0.295614035  0.264844804 0.3200677 0.9656160 0.2856838 0.48122215
## 275  0.294736842  0.263967611 0.3197970 0.9655172 0.2853142 0.48091603
## 1408 0.293859649  0.263090418 0.3195266 0.9654179 0.2849445 0.48061030
## 330  0.292982456  0.262213225 0.3192568 0.9653179 0.2845747 0.48030496
## 381  0.292105263  0.261336032 0.3189873 0.9652174 0.2842047 0.48000000
## 585  0.291228070  0.260458839 0.3187184 0.9651163 0.2838347 0.47969543
## 512  0.290350877  0.259581646 0.3184499 0.9650146 0.2834645 0.47939125
## 454  0.290350877  0.262145749 0.3190236 0.9678363 0.2868598 0.48035488
## 507  0.289473684  0.261268556 0.3187553 0.9677419 0.2864972 0.48005066
## 1106 0.288596491  0.260391363 0.3184874 0.9676471 0.2861345 0.47974684
## 1026 0.287719298  0.259514170 0.3182200 0.9675516 0.2857716 0.47944339
## 736  0.286842105  0.258636977 0.3179530 0.9674556 0.2854086 0.47914033
## 1382 0.285964912  0.257759784 0.3176865 0.9673591 0.2850456 0.47883765
## 1411 0.285087719  0.256882591 0.3174204 0.9672619 0.2846823 0.47853535
## 993  0.284210526  0.256005398 0.3171548 0.9671642 0.2843190 0.47823344
## 75   0.283333333  0.255128205 0.3168896 0.9670659 0.2839555 0.47793190
## 561  0.282456140  0.254251012 0.3166249 0.9669670 0.2835919 0.47763075
## 1328 0.281578947  0.253373819 0.3163606 0.9668675 0.2832281 0.47732997
## 1090 0.280701754  0.252496626 0.3160967 0.9667674 0.2828641 0.47702958
## 225  0.279824561  0.251619433 0.3158333 0.9666667 0.2825000 0.47672956
## 1311 0.278947368  0.250742240 0.3155704 0.9665653 0.2821357 0.47642992
## 483  0.278070175  0.249865047 0.3153078 0.9664634 0.2817712 0.47613065
## 405  0.277192982  0.248987854 0.3150457 0.9663609 0.2814066 0.47583176
## 617  0.276315789  0.248110661 0.3147841 0.9662577 0.2810417 0.47553325
## 907  0.275438596  0.247233468 0.3145228 0.9661538 0.2806767 0.47523511
## 684  0.274561404  0.246356275 0.3142620 0.9660494 0.2803114 0.47493734
## 927  0.273684211  0.245479082 0.3140017 0.9659443 0.2799459 0.47463995
## 685  0.272807018  0.244601889 0.3137417 0.9658385 0.2795802 0.47434293
## 681  0.271929825  0.243724696 0.3134822 0.9657321 0.2792143 0.47404628
## 728  0.271052632  0.242847503 0.3132231 0.9656250 0.2788481 0.47375000
## 921  0.270175439  0.241970310 0.3129645 0.9655172 0.2784817 0.47345409
## 846  0.269298246  0.241093117 0.3127063 0.9654088 0.2781151 0.47315855
## 67   0.269298246  0.243657220 0.3132729 0.9684543 0.2817271 0.47411104
## 734  0.268421053  0.242780027 0.3130148 0.9683544 0.2813693 0.47381546
## 1189 0.267543860  0.241902834 0.3127572 0.9682540 0.2810112 0.47352025
## 357  0.266666667  0.241025641 0.3125000 0.9681529 0.2806529 0.47322540
## 1030 0.265789474  0.240148448 0.3122432 0.9680511 0.2802943 0.47293093
## 827  0.265789474  0.242712551 0.3128079 0.9711538 0.2839617 0.47388060
## 775  0.264912281  0.241835358 0.3125513 0.9710611 0.2836124 0.47358608
## 1203 0.264035088  0.240958165 0.3122951 0.9709677 0.2832628 0.47329193
## 1130 0.263157895  0.240080972 0.3120393 0.9708738 0.2829131 0.47299814
## 906  0.262280702  0.239203779 0.3117840 0.9707792 0.2825632 0.47270471
## 790  0.261403509  0.238326586 0.3115290 0.9706840 0.2822131 0.47241166
## 924  0.260526316  0.237449393 0.3112745 0.9705882 0.2818627 0.47211896
## 279  0.259649123  0.236572200 0.3110204 0.9704918 0.2815122 0.47182663
## 768  0.258771930  0.235695007 0.3107667 0.9703947 0.2811615 0.47153465
## 974  0.257894737  0.234817814 0.3105134 0.9702970 0.2808105 0.47124304
## 60   0.257017544  0.233940621 0.3102606 0.9701987 0.2804593 0.47095179
## 1396 0.256140351  0.233063428 0.3100081 0.9700997 0.2801078 0.47066090
## 1323 0.255263158  0.232186235 0.3097561 0.9700000 0.2797561 0.47037037
## 715  0.254385965  0.231309042 0.3095045 0.9698997 0.2794041 0.47008020
## 175  0.253508772  0.230431849 0.3092532 0.9697987 0.2790519 0.46979038
## 847  0.252631579  0.229554656 0.3090024 0.9696970 0.2786994 0.46950092
## 1293 0.251754386  0.228677463 0.3087520 0.9695946 0.2783466 0.46921182
## 281  0.250877193  0.227800270 0.3085020 0.9694915 0.2779935 0.46892308
## 1274 0.250000000  0.226923077 0.3082524 0.9693878 0.2776402 0.46863469
## 140  0.250000000  0.229487179 0.3088116 0.9726962 0.2815079 0.46957591
## 1310 0.249122807  0.228609987 0.3085622 0.9726027 0.2811649 0.46928747
## 867  0.248245614  0.227732794 0.3083132 0.9725086 0.2808217 0.46899939
## 1193 0.247368421  0.226855601 0.3080645 0.9724138 0.2804783 0.46871166
## 1002 0.246491228  0.225978408 0.3078163 0.9723183 0.2801346 0.46842428
## 278  0.245614035  0.225101215 0.3075684 0.9722222 0.2797907 0.46813725
## 1025 0.244736842  0.224224022 0.3073210 0.9721254 0.2794464 0.46785058
## 177  0.243859649  0.223346829 0.3070740 0.9720280 0.2791019 0.46756426
## 594  0.242982456  0.222469636 0.3068273 0.9719298 0.2787571 0.46727829
## 1385 0.242105263  0.221592443 0.3065811 0.9718310 0.2784120 0.46699267
## 1294 0.241228070  0.220715250 0.3063352 0.9717314 0.2780667 0.46670739
## 52   0.240350877  0.219838057 0.3060897 0.9716312 0.2777209 0.46642247
## 336  0.240350877  0.222402159 0.3066453 0.9750890 0.2817343 0.46735815
## 882  0.239473684  0.221524966 0.3064000 0.9750000 0.2814000 0.46707317
## 439  0.238596491  0.220647773 0.3061551 0.9749104 0.2810655 0.46678854
## 1349 0.237719298  0.219770580 0.3059105 0.9748201 0.2807307 0.46650426
## 436  0.236842105  0.218893387 0.3056664 0.9747292 0.2803956 0.46622033
## 772  0.235964912  0.218016194 0.3054226 0.9746377 0.2800603 0.46593674
## 414  0.235964912  0.220580297 0.3059761 0.9781818 0.2841579 0.46686930
## 249  0.235087719  0.219703104 0.3057325 0.9781022 0.2838347 0.46658566
## 1120 0.234210526  0.218825911 0.3054893 0.9780220 0.2835112 0.46630237
## 698  0.233333333  0.217948718 0.3052464 0.9779412 0.2831876 0.46601942
## 528  0.232456140  0.217071525 0.3050040 0.9778598 0.2828638 0.46573681
## 845  0.231578947  0.216194332 0.3047619 0.9777778 0.2825397 0.46545455
## 812  0.230701754  0.215317139 0.3045202 0.9776952 0.2822154 0.46517262
## 1463 0.229824561  0.214439946 0.3042789 0.9776119 0.2818909 0.46489104
## 1477 0.228947368  0.213562753 0.3040380 0.9775281 0.2815661 0.46460980
## 848  0.228070175  0.212685560 0.3037975 0.9774436 0.2812411 0.46432890
## 1412 0.227192982  0.211808367 0.3035573 0.9773585 0.2809158 0.46404834
## 276  0.226315789  0.210931174 0.3033175 0.9772727 0.2805903 0.46376812
## 10   0.225438596  0.210053981 0.3030781 0.9771863 0.2802644 0.46348823
## 165  0.224561404  0.209176788 0.3028391 0.9770992 0.2799384 0.46320869
## 185  0.224561404  0.211740891 0.3033885 0.9808429 0.2842314 0.46413502
## 904  0.223684211  0.210863698 0.3031496 0.9807692 0.2839188 0.46385542
## 881  0.222807018  0.209986505 0.3029111 0.9806950 0.2836061 0.46357616
## 738  0.221929825  0.209109312 0.3026730 0.9806202 0.2832931 0.46329723
## 1084 0.221052632  0.208232119 0.3024352 0.9805447 0.2829799 0.46301864
## 898  0.220175439  0.207354926 0.3021978 0.9804688 0.2826666 0.46274038
## 971  0.219298246  0.206477733 0.3019608 0.9803922 0.2823529 0.46246246
## 1435 0.218421053  0.205600540 0.3017241 0.9803150 0.2820391 0.46218487
## 905  0.217543860  0.204723347 0.3014879 0.9802372 0.2817250 0.46190762
## 1299 0.216666667  0.203846154 0.3012520 0.9801587 0.2814107 0.46163070
## 554  0.215789474  0.202968961 0.3010164 0.9800797 0.2810961 0.46135410
## 886  0.214912281  0.202091768 0.3007812 0.9800000 0.2807812 0.46107784
## 476  0.214035088  0.201214575 0.3005464 0.9799197 0.2804661 0.46080192
## 707  0.213157895  0.200337382 0.3003120 0.9798387 0.2801507 0.46052632
## 1053 0.212280702  0.199460189 0.3000779 0.9797571 0.2798350 0.46025105
## 803  0.211403509  0.198582996 0.2998442 0.9796748 0.2795190 0.45997611
## 1011 0.210526316  0.197705803 0.2996109 0.9795918 0.2792027 0.45970149
## 1201 0.209649123  0.196828610 0.2993779 0.9795082 0.2788861 0.45942721
## 839  0.208771930  0.195951417 0.2991453 0.9794239 0.2785692 0.45915325
## 1337 0.207894737  0.195074224 0.2989130 0.9793388 0.2782519 0.45887962
## 1181 0.207017544  0.194197031 0.2986811 0.9792531 0.2779343 0.45860631
## 1046 0.206140351  0.193319838 0.2984496 0.9791667 0.2776163 0.45833333
## 1128 0.205263158  0.192442645 0.2982184 0.9790795 0.2772979 0.45806068
## 794  0.204385965  0.191565452 0.2979876 0.9789916 0.2769792 0.45778835
## 866  0.203508772  0.190688259 0.2977572 0.9789030 0.2766601 0.45751634
## 1370 0.202631579  0.189811066 0.2975270 0.9788136 0.2763406 0.45724466
## 501  0.201754386  0.188933873 0.2972973 0.9787234 0.2760207 0.45697329
## 442  0.201754386  0.191497976 0.2978395 0.9829060 0.2807455 0.45788849
## 490  0.200877193  0.190620783 0.2976099 0.9828326 0.2804425 0.45761707
## 862  0.200000000  0.189743590 0.2973806 0.9827586 0.2801392 0.45734597
## 722  0.199122807  0.188866397 0.2971517 0.9826840 0.2798356 0.45707519
## 1096 0.198245614  0.187989204 0.2969231 0.9826087 0.2795318 0.45680473
## 1526 0.197368421  0.187112011 0.2966949 0.9825328 0.2792276 0.45653459
## 6    0.197368421  0.189676113 0.2972350 0.9868421 0.2840771 0.45744681
## 1212 0.196491228  0.188798920 0.2970069 0.9867841 0.2837910 0.45717661
## 1344 0.195614035  0.187921727 0.2967791 0.9867257 0.2835048 0.45690673
## 1454 0.194736842  0.187044534 0.2965517 0.9866667 0.2832184 0.45663717
## 1154 0.193859649  0.186167341 0.2963247 0.9866071 0.2829318 0.45636792
## 760  0.193859649  0.188731444 0.2968630 0.9910314 0.2878944 0.45727755
## 1332 0.192982456  0.187854251 0.2966361 0.9909910 0.2876271 0.45700824
## 525  0.192105263  0.186977058 0.2964095 0.9909502 0.2873597 0.45673926
## 80   0.191228070  0.186099865 0.2961832 0.9909091 0.2870923 0.45647059
## 473  0.190350877  0.185222672 0.2959573 0.9908676 0.2868249 0.45620223
## 179  0.189473684  0.184345479 0.2957317 0.9908257 0.2865574 0.45593420
## 173  0.188596491  0.183468286 0.2955065 0.9907834 0.2862899 0.45566647
## 1290 0.187719298  0.182591093 0.2952816 0.9907407 0.2860223 0.45539906
## 1048 0.186842105  0.181713900 0.2950570 0.9906977 0.2857547 0.45513196
## 833  0.185964912  0.180836707 0.2948328 0.9906542 0.2854870 0.45486518
## 380  0.185087719  0.179959514 0.2946090 0.9906103 0.2852193 0.45459871
## 573  0.184210526  0.179082321 0.2943854 0.9905660 0.2849515 0.45433255
## 1146 0.183333333  0.178205128 0.2941622 0.9905213 0.2846836 0.45406671
## 226  0.182456140  0.177327935 0.2939394 0.9904762 0.2844156 0.45380117
## 1392 0.181578947  0.176450742 0.2937169 0.9904306 0.2841475 0.45353594
## 935  0.180701754  0.175573549 0.2934947 0.9903846 0.2838793 0.45327103
## 869  0.179824561  0.174696356 0.2932729 0.9903382 0.2836110 0.45300642
## 990  0.178947368  0.173819163 0.2930514 0.9902913 0.2833426 0.45274212
## 708  0.178070175  0.172941970 0.2928302 0.9902439 0.2830741 0.45247813
## 596  0.177192982  0.172064777 0.2926094 0.9901961 0.2828054 0.45221445
## 703  0.176315789  0.171187584 0.2923888 0.9901478 0.2825366 0.45195108
## 1204 0.175438596  0.170310391 0.2921687 0.9900990 0.2822677 0.45168801
## 661  0.174561404  0.169433198 0.2919488 0.9900498 0.2819986 0.45142525
## 308  0.174561404  0.171997301 0.2924812 0.9950000 0.2874812 0.45232558
## 1336 0.173684211  0.171120108 0.2922615 0.9949749 0.2872363 0.45206275
## 792  0.172807018  0.170242915 0.2920420 0.9949495 0.2869915 0.45180023
## 1195 0.171929825  0.169365722 0.2918230 0.9949239 0.2867468 0.45153802
## 1460 0.171052632  0.168488529 0.2916042 0.9948980 0.2865022 0.45127610
## 284  0.170175439  0.167611336 0.2913858 0.9948718 0.2862576 0.45101449
## 1078 0.169298246  0.166734143 0.2911677 0.9948454 0.2860130 0.45075319
## 724  0.168421053  0.165856950 0.2909499 0.9948187 0.2857685 0.45049218
## 702  0.167543860  0.164979757 0.2907324 0.9947917 0.2855241 0.45023148
## 670  0.166666667  0.164102564 0.2905153 0.9947644 0.2852797 0.44997108
## 1281 0.165789474  0.163225371 0.2902985 0.9947368 0.2850353 0.44971098
## 667  0.164912281  0.162348178 0.2900820 0.9947090 0.2847910 0.44945118
## 1459 0.164035088  0.161470985 0.2898659 0.9946809 0.2845467 0.44919169
## 1035 0.163157895  0.160593792 0.2896500 0.9946524 0.2843024 0.44893249
## 531  0.162280702  0.159716599 0.2894345 0.9946237 0.2840582 0.44867359
## 1224 0.161403509  0.158839406 0.2892193 0.9945946 0.2838139 0.44841499
## 659  0.160526316  0.157962213 0.2890045 0.9945652 0.2835697 0.44815668
## 1005 0.159649123  0.157085020 0.2887899 0.9945355 0.2833254 0.44789868
## 668  0.158771930  0.156207827 0.2885757 0.9945055 0.2830812 0.44764097
## 564  0.157894737  0.155330634 0.2883617 0.9944751 0.2828369 0.44738355
## 861  0.157017544  0.154453441 0.2881481 0.9944444 0.2825926 0.44712644
## 559  0.156140351  0.153576248 0.2879349 0.9944134 0.2823483 0.44686962
## 967  0.155263158  0.152699055 0.2877219 0.9943820 0.2821039 0.44661309
## 176  0.154385965  0.151821862 0.2875092 0.9943503 0.2818595 0.44635686
## 1211 0.153508772  0.150944669 0.2872969 0.9943182 0.2816151 0.44610092
## 1085 0.152631579  0.150067476 0.2870849 0.9942857 0.2813706 0.44584527
## 899  0.151754386  0.149190283 0.2868732 0.9942529 0.2811260 0.44558992
## 709  0.150877193  0.148313090 0.2866618 0.9942197 0.2808814 0.44533486
## 282  0.150000000  0.147435897 0.2864507 0.9941860 0.2806367 0.44508009
## 532  0.149122807  0.146558704 0.2862399 0.9941520 0.2803919 0.44482561
## 639  0.148245614  0.145681511 0.2860294 0.9941176 0.2801471 0.44457143
## 991  0.147368421  0.144804318 0.2858193 0.9940828 0.2799021 0.44431753
## 1158 0.146491228  0.143927126 0.2856094 0.9940476 0.2796570 0.44406393
## 973  0.145614035  0.143049933 0.2853999 0.9940120 0.2794118 0.44381061
## 1152 0.144736842  0.142172740 0.2851906 0.9939759 0.2791665 0.44355758
## 1243 0.143859649  0.141295547 0.2849817 0.9939394 0.2789211 0.44330484
## 746  0.142982456  0.140418354 0.2847731 0.9939024 0.2786755 0.44305239
## 1012 0.142105263  0.139541161 0.2845647 0.9938650 0.2784298 0.44280023
## 1049 0.141228070  0.138663968 0.2843567 0.9938272 0.2781839 0.44254835
## 1280 0.140350877  0.137786775 0.2841490 0.9937888 0.2779378 0.44229676
## 1317 0.139473684  0.136909582 0.2839416 0.9937500 0.2776916 0.44204545
## 23   0.139473684  0.139473684 0.2844639 1.0000000 0.2844639 0.44293015
## 725  0.138596491  0.138596491 0.2842566 1.0000000 0.2842566 0.44267877
## 298  0.137719298  0.137719298 0.2840495 1.0000000 0.2840495 0.44242768
## 632  0.136842105  0.136842105 0.2838428 1.0000000 0.2838428 0.44217687
## 938  0.135964912  0.135964912 0.2836364 1.0000000 0.2836364 0.44192635
## 776  0.135087719  0.135087719 0.2834302 1.0000000 0.2834302 0.44167610
## 1034 0.134210526  0.134210526 0.2832244 1.0000000 0.2832244 0.44142615
## 1248 0.133333333  0.133333333 0.2830189 1.0000000 0.2830189 0.44117647
## 44   0.132456140  0.132456140 0.2828136 1.0000000 0.2828136 0.44092708
## 1117 0.131578947  0.131578947 0.2826087 1.0000000 0.2826087 0.44067797
## 779  0.130701754  0.130701754 0.2824041 1.0000000 0.2824041 0.44042914
## 970  0.129824561  0.129824561 0.2821997 1.0000000 0.2821997 0.44018059
## 1371 0.128947368  0.128947368 0.2819957 1.0000000 0.2819957 0.43993232
## 1409 0.128070175  0.128070175 0.2817919 1.0000000 0.2817919 0.43968433
## 487  0.127192982  0.127192982 0.2815884 1.0000000 0.2815884 0.43943662
## 1209 0.126315789  0.126315789 0.2813853 1.0000000 0.2813853 0.43918919
## 1157 0.125438596  0.125438596 0.2811824 1.0000000 0.2811824 0.43894204
## 1113 0.124561404  0.124561404 0.2809798 1.0000000 0.2809798 0.43869516
## 937  0.123684211  0.123684211 0.2807775 1.0000000 0.2807775 0.43844857
## 384  0.122807018  0.122807018 0.2805755 1.0000000 0.2805755 0.43820225
## 1013 0.121929825  0.121929825 0.2803738 1.0000000 0.2803738 0.43795620
## 814  0.121052632  0.121052632 0.2801724 1.0000000 0.2801724 0.43771044
## 1425 0.120175439  0.120175439 0.2799713 1.0000000 0.2799713 0.43746495
## 1350 0.119298246  0.119298246 0.2797704 1.0000000 0.2797704 0.43721973
## 743  0.118421053  0.118421053 0.2795699 1.0000000 0.2795699 0.43697479
## 777  0.117543860  0.117543860 0.2793696 1.0000000 0.2793696 0.43673012
## 1503 0.116666667  0.116666667 0.2791696 1.0000000 0.2791696 0.43648573
## 631  0.115789474  0.115789474 0.2789700 1.0000000 0.2789700 0.43624161
## 660  0.114912281  0.114912281 0.2787706 1.0000000 0.2787706 0.43599776
## 1286 0.114035088  0.114035088 0.2785714 1.0000000 0.2785714 0.43575419
## 793  0.113157895  0.113157895 0.2783726 1.0000000 0.2783726 0.43551089
## 98   0.112280702  0.112280702 0.2781740 1.0000000 0.2781740 0.43526786
## 438  0.111403509  0.111403509 0.2779758 1.0000000 0.2779758 0.43502510
## 994  0.110526316  0.110526316 0.2777778 1.0000000 0.2777778 0.43478261
## 1145 0.109649123  0.109649123 0.2775801 1.0000000 0.2775801 0.43454039
## 1419 0.108771930  0.108771930 0.2773826 1.0000000 0.2773826 0.43429844
## 1401 0.107894737  0.107894737 0.2771855 1.0000000 0.2771855 0.43405676
## 729  0.107017544  0.107017544 0.2769886 1.0000000 0.2769886 0.43381535
## 117  0.106140351  0.106140351 0.2767921 1.0000000 0.2767921 0.43357421
## 1528 0.105263158  0.105263158 0.2765957 1.0000000 0.2765957 0.43333333
## 1352 0.104385965  0.104385965 0.2763997 1.0000000 0.2763997 0.43309273
## 972  0.103508772  0.103508772 0.2762040 1.0000000 0.2762040 0.43285239
## 883  0.102631579  0.102631579 0.2760085 1.0000000 0.2760085 0.43261231
## 1044 0.101754386  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251
## 526  0.100877193  0.100877193 0.2756184 1.0000000 0.2756184 0.43213296
## 1270 0.100000000  0.100000000 0.2754237 1.0000000 0.2754237 0.43189369
## 89   0.099122807  0.099122807 0.2752294 1.0000000 0.2752294 0.43165468
## 1082 0.098245614  0.098245614 0.2750353 1.0000000 0.2750353 0.43141593
## 870  0.097368421  0.097368421 0.2748414 1.0000000 0.2748414 0.43117745
## 562  0.096491228  0.096491228 0.2746479 1.0000000 0.2746479 0.43093923
## 1452 0.095614035  0.095614035 0.2744546 1.0000000 0.2744546 0.43070127
## 860  0.094736842  0.094736842 0.2742616 1.0000000 0.2742616 0.43046358
## 885  0.093859649  0.093859649 0.2740689 1.0000000 0.2740689 0.43022614
## 1383 0.092982456  0.092982456 0.2738764 1.0000000 0.2738764 0.42998897
## 1316 0.092105263  0.092105263 0.2736842 1.0000000 0.2736842 0.42975207
## 789  0.091228070  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542
## 455  0.090350877  0.090350877 0.2733006 1.0000000 0.2733006 0.42927903
## 1051 0.089473684  0.089473684 0.2731092 1.0000000 0.2731092 0.42904290
## 441  0.088596491  0.088596491 0.2729181 1.0000000 0.2729181 0.42880704
## 723  0.087719298  0.087719298 0.2727273 1.0000000 0.2727273 0.42857143
## 96   0.086842105  0.086842105 0.2725367 1.0000000 0.2725367 0.42833608
## 428  0.085964912  0.085964912 0.2723464 1.0000000 0.2723464 0.42810099
## 1420 0.085087719  0.085087719 0.2721563 1.0000000 0.2721563 0.42786615
## 1230 0.084210526  0.084210526 0.2719665 1.0000000 0.2719665 0.42763158
## 463  0.083333333  0.083333333 0.2717770 1.0000000 0.2717770 0.42739726
## 1021 0.082456140  0.082456140 0.2715877 1.0000000 0.2715877 0.42716320
## 1210 0.081578947  0.081578947 0.2713987 1.0000000 0.2713987 0.42692939
## 1115 0.080701754  0.080701754 0.2712100 1.0000000 0.2712100 0.42669584
## 266  0.079824561  0.079824561 0.2710215 1.0000000 0.2710215 0.42646255
## 1462 0.078947368  0.078947368 0.2708333 1.0000000 0.2708333 0.42622951
## 563  0.078070175  0.078070175 0.2706454 1.0000000 0.2706454 0.42599672
## 928  0.077192982  0.077192982 0.2704577 1.0000000 0.2704577 0.42576419
## 329  0.076315789  0.076315789 0.2702703 1.0000000 0.2702703 0.42553191
## 1494 0.075438596  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989
## 1219 0.074561404  0.074561404 0.2698962 1.0000000 0.2698962 0.42506812
## 705  0.073684211  0.073684211 0.2697095 1.0000000 0.2697095 0.42483660
## 1529 0.072807018  0.072807018 0.2695232 1.0000000 0.2695232 0.42460533
## 1123 0.071929825  0.071929825 0.2693370 1.0000000 0.2693370 0.42437432
## 810  0.071052632  0.071052632 0.2691511 1.0000000 0.2691511 0.42414356
## 493  0.070175439  0.070175439 0.2689655 1.0000000 0.2689655 0.42391304
## 530  0.069298246  0.069298246 0.2687802 1.0000000 0.2687802 0.42368278
## 747  0.068421053  0.068421053 0.2685950 1.0000000 0.2685950 0.42345277
## 816  0.067543860  0.067543860 0.2684102 1.0000000 0.2684102 0.42322301
## 815  0.066666667  0.066666667 0.2682256 1.0000000 0.2682256 0.42299349
## 120  0.065789474  0.065789474 0.2680412 1.0000000 0.2680412 0.42276423
## 560  0.064912281  0.064912281 0.2678571 1.0000000 0.2678571 0.42253521
## 1354 0.064035088  0.064035088 0.2676733 1.0000000 0.2676733 0.42230644
## 1240 0.063157895  0.063157895 0.2674897 1.0000000 0.2674897 0.42207792
## 989  0.062280702  0.062280702 0.2673064 1.0000000 0.2673064 0.42184965
## 215  0.061403509  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162
## 1492 0.060526316  0.060526316 0.2669405 1.0000000 0.2669405 0.42139384
## 1348 0.059649123  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631
## 391  0.058771930  0.058771930 0.2665755 1.0000000 0.2665755 0.42093902
## 783  0.057894737  0.057894737 0.2663934 1.0000000 0.2663934 0.42071197
## 597  0.057017544  0.057017544 0.2662116 1.0000000 0.2662116 0.42048518
## 1501 0.056140351  0.056140351 0.2660300 1.0000000 0.2660300 0.42025862
## 1322 0.055263158  0.055263158 0.2658487 1.0000000 0.2658487 0.42003231
## 936  0.054385965  0.054385965 0.2656676 1.0000000 0.2656676 0.41980624
## 1244 0.053508772  0.053508772 0.2654867 1.0000000 0.2654867 0.41958042
## 1351 0.052631579  0.052631579 0.2653061 1.0000000 0.2653061 0.41935484
## 1079 0.051754386  0.051754386 0.2651258 1.0000000 0.2651258 0.41912950
## 1527 0.050877193  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440
## 1156 0.050000000  0.050000000 0.2647658 1.0000000 0.2647658 0.41867955
## 389  0.049122807  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494
## 633  0.048245614  0.048245614 0.2644068 1.0000000 0.2644068 0.41823056
## 223  0.047368421  0.047368421 0.2642276 1.0000000 0.2642276 0.41800643
## 1242 0.046491228  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254
## 770  0.045614035  0.045614035 0.2638701 1.0000000 0.2638701 0.41755889
## 1050 0.044736842  0.044736842 0.2636917 1.0000000 0.2636917 0.41733547
## 943  0.043859649  0.043859649 0.2635135 1.0000000 0.2635135 0.41711230
## 808  0.042982456  0.042982456 0.2633356 1.0000000 0.2633356 0.41688936
## 1387 0.042105263  0.042105263 0.2631579 1.0000000 0.2631579 0.41666667
## 1427 0.041228070  0.041228070 0.2629804 1.0000000 0.2629804 0.41644421
## 1187 0.040350877  0.040350877 0.2628032 1.0000000 0.2628032 0.41622199
## 872  0.039473684  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000
## 1135 0.038596491  0.038596491 0.2624495 1.0000000 0.2624495 0.41577825
## 726  0.037719298  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674
## 548  0.036842105  0.036842105 0.2620968 1.0000000 0.2620968 0.41533546
## 1095 0.035964912  0.035964912 0.2619208 1.0000000 0.2619208 0.41511442
## 809  0.035087719  0.035087719 0.2617450 1.0000000 0.2617450 0.41489362
## 566  0.034210526  0.034210526 0.2615694 1.0000000 0.2615694 0.41467305
## 769  0.033333333  0.033333333 0.2613941 1.0000000 0.2613941 0.41445271
## 606  0.032456140  0.032456140 0.2612190 1.0000000 0.2612190 0.41423261
## 1191 0.031578947  0.031578947 0.2610442 1.0000000 0.2610442 0.41401274
## 264  0.030701754  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310
## 1083 0.029824561  0.029824561 0.2606952 1.0000000 0.2606952 0.41357370
## 1381 0.028947368  0.028947368 0.2605210 1.0000000 0.2605210 0.41335453
## 942  0.028070175  0.028070175 0.2603471 1.0000000 0.2603471 0.41313559
## 868  0.027192982  0.027192982 0.2601734 1.0000000 0.2601734 0.41291689
## 1393 0.026315789  0.026315789 0.2600000 1.0000000 0.2600000 0.41269841
## 1516 0.025438596  0.025438596 0.2598268 1.0000000 0.2598268 0.41248017
## 640  0.024561404  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216
## 595  0.023684211  0.023684211 0.2594810 1.0000000 0.2594810 0.41204437
## 976  0.022807018  0.022807018 0.2593085 1.0000000 0.2593085 0.41182682
## 1076 0.021929825  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950
## 744  0.021052632  0.021052632 0.2589641 1.0000000 0.2589641 0.41139241
## 1510 0.020175439  0.020175439 0.2587923 1.0000000 0.2587923 0.41117554
## 474  0.019298246  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890
## 1223 0.018421053  0.018421053 0.2584493 1.0000000 0.2584493 0.41074250
## 1390 0.017543860  0.017543860 0.2582781 1.0000000 0.2582781 0.41052632
## 1093 0.016666667  0.016666667 0.2581072 1.0000000 0.2581072 0.41031036
## 529  0.015789474  0.015789474 0.2579365 1.0000000 0.2579365 0.41009464
## 106  0.014912281  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914
## 638  0.014035088  0.014035088 0.2575958 1.0000000 0.2575958 0.40966387
## 578  0.013157895  0.013157895 0.2574257 1.0000000 0.2574257 0.40944882
## 836  0.012280702  0.012280702 0.2572559 1.0000000 0.2572559 0.40923400
## 47   0.011403509  0.011403509 0.2570864 1.0000000 0.2570864 0.40901940
## 618  0.010526316  0.010526316 0.2569170 1.0000000 0.2569170 0.40880503
## 917  0.009649123  0.009649123 0.2567479 1.0000000 0.2567479 0.40859089
## 941  0.008771930  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696
## 727  0.007894737  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327
## 911  0.007017544  0.007017544 0.2562418 1.0000000 0.2562418 0.40794979
## 844  0.006140351  0.006140351 0.2560735 1.0000000 0.2560735 0.40773654
## 1508 0.005263158  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351
## 73   0.004385965  0.004385965 0.2557377 1.0000000 0.2557377 0.40731070
## 1410 0.003508772  0.003508772 0.2555701 1.0000000 0.2555701 0.40709812
## 334  0.002631579  0.002631579 0.2554028 1.0000000 0.2554028 0.40688576
## 285  0.001754386  0.001754386 0.2552356 1.0000000 0.2552356 0.40667362
## 1399 0.000877193  0.000877193 0.2550687 1.0000000 0.2550687 0.40646170
## 1404 0.000000000  0.000000000 0.2549020 0.0000000       NaN 0.40625000
##             MCC         FPR           PG           RG
## 131  0.04372365 0.000000000 1.0000000000 0.0000000000
## 342  0.06185481 0.000000000 1.0000000000 0.0000000000
## 1170 0.07578116 0.000000000 1.0000000000 0.0000000000
## 50   0.08753321 0.000000000 1.0000000000 0.0000000000
## 1285 0.07161952 0.000877193 0.5852631579 0.0000000000
## 294  0.08328019 0.000877193 0.6469298246 0.0000000000
## 257  0.09368628 0.000877193 0.6928034372 0.0000000000
## 543  0.10315843 0.000877193 0.7282072368 0.0000000000
## 1472 0.11190350 0.000877193 0.7563352827 0.0000000000
## 482  0.10145175 0.001754386 0.5852631579 0.0000000000
## 826  0.10998878 0.001754386 0.6185297956 0.0000000000
## 1178 0.10100727 0.002631579 0.4983552632 0.0000000000
## 820  0.10925126 0.002631579 0.5309872314 0.0000000000
## 1019 0.10129704 0.003508772 0.4403866810 0.0000000000
## 1    0.10923597 0.003508772 0.4708771930 0.0000000000
## 624  0.10204419 0.004385965 0.3991570724 0.0000000000
## 449  0.10969059 0.004385965 0.4272445820 0.0000000000
## 127  0.11699887 0.004385965 0.4529727096 0.0000000000
## 1376 0.11046401 0.005263158 0.3942265636 0.0000000000
## 246  0.11754087 0.005263158 0.4181578947 0.0000000000
## 263  0.11146046 0.006140351 0.3684210526 0.0000000000
## 195  0.11832051 0.006140351 0.3906589822 0.0000000000
## 1482 0.11261647 0.007017544 0.3477265944 0.0000000000
## 538  0.11927487 0.007017544 0.3684210526 0.0000000000
## 1321 0.11388847 0.007894737 0.3307789474 0.0000000000
## 208  0.12035984 0.007894737 0.3500856431 0.0000000000
## 1300 0.11524573 0.008771930 0.3166558371 0.0000000000
## 150  0.12154366 0.008771930 0.3347207304 0.0000000000
## 232  0.12766413 0.008771930 0.3519619501 0.0000000000
## 818  0.13361980 0.008771930 0.3684210526 0.0000000000
## 752  0.13942201 0.008771930 0.3841393286 0.0000000000
## 211  0.14508093 0.008771930 0.3991570724 0.0000000000
## 248  0.15060576 0.008771930 0.4135131216 0.0000000000
## 205  0.15600482 0.008771930 0.4272445820 0.0000000000
## 138  0.16128566 0.008771930 0.4403866810 0.0000000000
## 1061 0.16645516 0.008771930 0.4529727096 0.0000000000
## 5    0.17151961 0.008771930 0.4650340241 0.0000000000
## 287  0.17648475 0.008771930 0.4766000875 0.0000000000
## 11   0.18135589 0.008771930 0.4876985363 0.0000000000
## 1003 0.17673884 0.009649123 0.4574177632 0.0000000000
## 343  0.18154839 0.009649123 0.4682363255 0.0000000000
## 270  0.17709468 0.010526316 0.4403866810 0.0000000000
## 1397 0.17276909 0.011403509 0.4145911019 0.0000000000
## 796  0.16856457 0.012280702 0.3906589822 0.0000000000
## 1309 0.16447460 0.013157895 0.3684210526 0.0000000000
## 462  0.16049318 0.014035088 0.3477265944 0.0000000000
## 1256 0.16530605 0.014035088 0.3582235353 0.0000000000
## 821  0.17004049 0.014035088 0.3684210526 0.0000000000
## 171  0.16618202 0.014912281 0.3489773998 0.0000000000
## 1468 0.17085236 0.014912281 0.3588315789 0.0000000000
## 146  0.17545139 0.014912281 0.3684210526 0.0000000000
## 251  0.17998205 0.014912281 0.3777542043 0.0000000000
## 1473 0.18444707 0.014912281 0.3868392947 0.0000000000
## 930  0.18072137 0.015789474 0.3684210526 0.0000000000
## 356  0.18513425 0.015789474 0.3772422793 0.0000000000
## 1363 0.18948688 0.015789474 0.3858418367 0.0000000000
## 190  0.19378150 0.015789474 0.3942265636 0.0000000000
## 372  0.19016719 0.016666667 0.3767835910 0.0000000000
## 400  0.19441626 0.016666667 0.3849468544 0.0000000000
## 641  0.19861174 0.016666667 0.3929166667 0.0000000000
## 183  0.20275551 0.016666667 0.4006987369 0.0000000000
## 1375 0.19924348 0.017543860 0.3841393286 0.0000000000
## 1365 0.20334707 0.017543860 0.3917333015 0.0000000000
## 338  0.20740263 0.017543860 0.3991570724 0.0000000000
## 802  0.20397585 0.018421053 0.3834070383 0.0000000000
## 795  0.20061216 0.019298246 0.3684210526 0.0000000000
## 370  0.19730927 0.020175439 0.3541522552 0.0000000000
## 207  0.20134247 0.020175439 0.3613583591 0.0000000000
## 139  0.20533135 0.020175439 0.3684210526 0.0000000000
## 1202 0.20209963 0.021052632 0.3547583244 0.0000000000
## 18   0.20605217 0.021052632 0.3616554777 0.0000000000
## 1018 0.20288117 0.021929825 0.3485776072 0.0000000000
## 154  0.20679829 0.021929825 0.3553150092 0.0000000000
## 196  0.21067541 0.021929825 0.3619286071 0.0000000000
## 306  0.21451366 0.021929825 0.3684210526 0.0000000000
## 413  0.21831415 0.021929825 0.3747949774 0.0000000000
## 825  0.22207794 0.021929825 0.3810529867 0.0000000000
## 782  0.21898775 0.022807018 0.3684210526 0.0000000000
## 451  0.22272209 0.022807018 0.3745519864 0.0000000000
## 1260 0.22642186 0.022807018 0.3805756579 0.0000000000
## 481  0.22339021 0.023684211 0.3684210526 0.0000000000
## 244  0.22706223 0.023684211 0.3743268418 0.0000000000
## 1179 0.22408047 0.024561404 0.3626299746 0.0000000000
## 1358 0.22772532 0.024561404 0.3684210526 0.0000000000
## 110  0.23133851 0.024561404 0.3741176471 0.0000000000
## 419  0.23492083 0.024561404 0.3797216134 0.0000000000
## 757  0.23847306 0.024561404 0.3852347873 0.0000000000
## 237  0.24199593 0.024561404 0.3906589822 0.0000000000
## 1217 0.23908279 0.025438596 0.3793380687 0.0000000000
## 155  0.23620867 0.026315789 0.3684210526 0.0000000000
## 141  0.23971348 0.026315789 0.3737407763 0.0000000000
## 1107 0.23688194 0.027192982 0.3631945826 0.0000000000
## 202  0.24036372 0.027192982 0.3684210526 0.0000000000
## 1057 0.24381849 0.027192982 0.3735704415 0.0000000000
## 354  0.24724688 0.027192982 0.3786441172 0.0000000000
## 1319 0.24446510 0.028070175 0.3684210526 0.0000000000
## 361  0.24787230 0.028070175 0.3734106762 0.0000000000
## 1054 0.25125439 0.028070175 0.3783292049 0.0000000000
## 570  0.24851557 0.028947368 0.3684210526 0.0000000000
## 650  0.25187749 0.028947368 0.3732605263 0.0000000000
## 247  0.25521547 0.028947368 0.3780331134 0.0000000000
## 352  0.25853001 0.028947368 0.3827399381 0.0000000000
## 1262 0.26182161 0.028947368 0.3873821135 0.0000000000
## 109  0.26509076 0.028947368 0.3919607404 0.0000000000
## 409  0.26833791 0.028947368 0.3964769066 0.0000000000
## 1395 0.26565746 0.029824561 0.3868392947 0.0000000000
## 351  0.26888757 0.029824561 0.3912913562 0.0000000000
## 980  0.26624141 0.030701754 0.3819376760 0.0000000000
## 184  0.26945474 0.030701754 0.3863266870 0.0000000000
## 945  0.27264751 0.030701754 0.3906589822 0.0000000000
## 254  0.27582012 0.030701754 0.3949354760 0.0000000000
## 1020 0.27321514 0.031578947 0.3858418367 0.0000000000
## 1045 0.27063781 0.032456140 0.3770068134 0.0000000000
## 1068 0.26808753 0.033333333 0.3684210526 0.0000000000
## 1060 0.27125200 0.033333333 0.3726275992 0.0000000000
## 289  0.27439727 0.033333333 0.3767835910 0.0000000000
## 240  0.27752368 0.033333333 0.3808897655 0.0000000000
## 295  0.28063160 0.033333333 0.3849468544 0.0000000000
## 432  0.27812161 0.034210526 0.3765716813 0.0000000000
## 1081 0.27563660 0.035087719 0.3684210526 0.0000000000
## 1066 0.27873332 0.035087719 0.3724184787 0.0000000000
## 193  0.28181232 0.035087719 0.3763702457 0.0000000000
## 1471 0.28487392 0.035087719 0.3802769863 0.0000000000
## 256  0.28791844 0.035087719 0.3841393286 0.0000000000
## 873  0.28547080 0.035964912 0.3761785263 0.0000000000
## 546  0.28850188 0.035964912 0.3799926403 0.0000000000
## 321  0.28608056 0.036842105 0.3722291655 0.0000000000
## 730  0.28368177 0.037719298 0.3646609658 0.0000000000
## 1289 0.28130508 0.038596491 0.3572817929 0.0000000000
## 771  0.27895009 0.039473684 0.3500856431 0.0000000000
## 13   0.28197636 0.039473684 0.3538286016 0.0000000000
## 447  0.28498665 0.039473684 0.3575331666 0.0000000000
## 460  0.28265792 0.040350877 0.3504943602 0.0000000000
## 1373 0.28034976 0.041228070 0.3436250601 0.0000000000
## 448  0.28334932 0.041228070 0.3472731211 0.0000000000
## 1137 0.28106359 0.042105263 0.3405572755 0.0000000000
## 212  0.28405010 0.042105263 0.3441593221 0.0000000000
## 200  0.28702157 0.042105263 0.3477265944 0.0000000000
## 731  0.28475986 0.042982456 0.3411477558 0.0000000000
## 1177 0.28251719 0.043859649 0.3347207304 0.0000000000
## 1065 0.28547820 0.043859649 0.3382335422 0.0000000000
## 1361 0.28842474 0.043859649 0.3417137368 0.0000000000
## 1362 0.29135705 0.043859649 0.3451616473 0.0000000000
## 72   0.28913912 0.044736842 0.3388500548 0.0000000000
## 135  0.29205951 0.044736842 0.3422567119 0.0000000000
## 147  0.29496616 0.044736842 0.3456323888 0.0000000000
## 1469 0.29785926 0.044736842 0.3489773998 0.0000000000
## 317  0.30073903 0.044736842 0.3522920591 0.0000000000
## 1443 0.29854723 0.045614035 0.3460844580 0.0000000000
## 1070 0.29637263 0.046491228 0.3400105263 0.0000000000
## 1271 0.29421495 0.047368421 0.3340666037 0.0000000000
## 430  0.29207392 0.048245614 0.3282491526 0.0000000000
## 470  0.29494839 0.048245614 0.3314986813 0.0000000000
## 346  0.29781009 0.048245614 0.3347207304 0.0000000000
## 258  0.30065920 0.048245614 0.3379155485 0.0005190491
## 748  0.30349591 0.048245614 0.3410833852 0.0014154469
## 894  0.30137819 0.049122807 0.3353504252 0.0014154469
## 1261 0.30420451 0.049122807 0.3384832053 0.0023294924
## 1074 0.30210421 0.050000000 0.3328586686 0.0023294924
## 996  0.30001927 0.050877193 0.3273478618 0.0023294924
## 964  0.29794945 0.051754386 0.3219478618 0.0023294924
## 464  0.29589452 0.052631579 0.3166558371 0.0023294924
## 319  0.29871529 0.052631579 0.3197256003 0.0032611855
## 540  0.30152438 0.052631579 0.3227715332 0.0042105263
## 340  0.30432194 0.052631579 0.3257938234 0.0051775148
## 216  0.30228593 0.053508772 0.3205768540 0.0051775148
## 1064 0.30507361 0.053508772 0.3235665448 0.0061621509
## 1077 0.30305319 0.054385965 0.3184411923 0.0061621509
## 1301 0.30104667 0.055263158 0.3134141330 0.0061621509
## 909  0.29905384 0.056140351 0.3084829721 0.0061621509
## 1292 0.29707450 0.057017544 0.3036453862 0.0061621509
## 1429 0.29510847 0.057894737 0.2988991204 0.0061621509
## 40   0.29789136 0.057894737 0.3018160524 0.0071644348
## 1058 0.30066341 0.057894737 0.3047124351 0.0081843662
## 42   0.30342475 0.057894737 0.3075883996 0.0092219454
## 950  0.30617554 0.057894737 0.3104440789 0.0102771722
## 588  0.30422700 0.058771930 0.3057449714 0.0102771722
## 716  0.30229111 0.059649123 0.3011315690 0.0102771722
## 349  0.30503378 0.059649123 0.3039477380 0.0113500467
## 567  0.30311140 0.060526316 0.2994078947 0.0113500467
## 1029 0.30120125 0.061403509 0.2949495469 0.0113500467
## 468  0.30393578 0.061403509 0.2977265649 0.0124405689
## 160  0.30203863 0.062280702 0.2933374824 0.0124405689
## 479  0.30015333 0.063157895 0.2890259676 0.0124405689
## 1466 0.30287973 0.063157895 0.2917642536 0.0135487387
## 61   0.30559631 0.063157895 0.2944849116 0.0146745562
## 62   0.30830318 0.063157895 0.2971880357 0.0158180214
## 111  0.31100048 0.063157895 0.2998737223 0.0169791342
## 1414 0.30913046 0.064035088 0.2955979013 0.0169791342
## 288  0.31181928 0.064035088 0.2982570346 0.0181578947
## 56   0.31449878 0.064035088 0.3008992424 0.0193543029
## 1432 0.31264192 0.064912281 0.2966779742 0.0193543029
## 116  0.31531321 0.064912281 0.2992945060 0.0205683588
## 714  0.31346829 0.065789474 0.2951352568 0.0205683588
## 122  0.31613148 0.065789474 0.2977265649 0.0218000623
## 840  0.31429830 0.066666667 0.2936276551 0.0218000623
## 1165 0.31695349 0.066666667 0.2961941818 0.0230494135
## 676  0.31513182 0.067543860 0.2921539961 0.0230494135
## 136  0.31777913 0.067543860 0.2946961733 0.0243164123
## 243  0.32041780 0.067543860 0.2972230263 0.0256010589
## 1063 0.32304793 0.067543860 0.2997346340 0.0269033531
## 259  0.32566962 0.067543860 0.3022310764 0.0282232949
## 170  0.32386194 0.068421053 0.2982230504 0.0282232949
## 798  0.32206440 0.069298246 0.2942788958 0.0282232949
## 1470 0.32467959 0.069298246 0.2967444190 0.0295608845
## 253  0.32728659 0.069298246 0.2991954448 0.0309161217
## 132  0.32988550 0.069298246 0.3016320469 0.0322890065
## 1269 0.32810059 0.070175439 0.2977265649 0.0322890065
## 1364 0.33069242 0.070175439 0.3001413357 0.0336795391
## 1475 0.33327637 0.070175439 0.3025420695 0.0350877193
## 218  0.33150298 0.071052632 0.2986822304 0.0350877193
## 292  0.33408006 0.071052632 0.3010617892 0.0365135472
## 128  0.33664945 0.071052632 0.3034276825 0.0379570227
## 571  0.33488739 0.071929825 0.2996124690 0.0379570227
## 889  0.33313467 0.072807018 0.2958549429 0.0379570227
## 797  0.33139120 0.073684211 0.2921539961 0.0379570227
## 1367 0.33395563 0.073684211 0.2944849116 0.0394181460
## 629  0.33222208 0.074561404 0.2908320007 0.0394181460
## 755  0.33477989 0.074561404 0.2931427838 0.0408969168
## 242  0.33733035 0.074561404 0.2954409526 0.0423933354
## 418  0.33987357 0.074561404 0.2977265649 0.0439074016
## 700  0.33815140 0.075438596 0.2941063396 0.0439074016
## 500  0.33643801 0.076315789 0.2905389315 0.0439074016
## 1426 0.33473329 0.077192982 0.2870233620 0.0439074016
## 145  0.33727172 0.077192982 0.2892756335 0.0454391155
## 956  0.33980312 0.077192982 0.2915160483 0.0469884771
## 69   0.34232757 0.077192982 0.2937446568 0.0485554863
## 1232 0.34063366 0.078070175 0.2902588448 0.0485554863
## 853  0.33894813 0.078947368 0.2868225846 0.0485554863
## 182  0.34146723 0.078947368 0.2890259676 0.0501401433
## 674  0.33979069 0.079824561 0.2856314340 0.0501401433
## 1467 0.34230376 0.079824561 0.2878167243 0.0517424478
## 829  0.34481015 0.079824561 0.2899908967 0.0533624001
## 1440 0.34314319 0.080701754 0.2866304486 0.0533624001
## 395  0.34564371 0.080701754 0.2887870196 0.0550000000
## 568  0.34398547 0.081578947 0.2854664986 0.0550000000
## 711  0.34233512 0.082456140 0.2821916191 0.0550000000
## 1474 0.34483054 0.082456140 0.2843242560 0.0566552476
## 895  0.34318865 0.083333333 0.2810875160 0.0566552476
## 658  0.34155446 0.084210526 0.2778947368 0.0566552476
## 1521 0.33992788 0.085087719 0.2747451608 0.0566552476
## 623  0.33830884 0.085964912 0.2716380460 0.0566552476
## 197  0.34080038 0.085964912 0.2737334114 0.0583281428
## 1449 0.33918935 0.086842105 0.2706610949 0.0583281428
## 108  0.34167520 0.086842105 0.2727398672 0.0600186858
## 45   0.34007207 0.087719298 0.2697016187 0.0600186858
## 1062 0.34255230 0.087719298 0.2717640452 0.0617268764
## 517  0.34095696 0.088596491 0.2687591564 0.0617268764
## 1037 0.33936878 0.089473684 0.2657936757 0.0617268764
## 1455 0.33778767 0.090350877 0.2628669474 0.0617268764
## 1402 0.33621358 0.091228070 0.2599783295 0.0617268764
## 780  0.33464642 0.092105263 0.2571271930 0.0617268764
## 498  0.33308613 0.092982456 0.2543129215 0.0617268764
## 310  0.33556319 0.092982456 0.2563248284 0.0634527146
## 1144 0.33401011 0.093859649 0.2535397317 0.0634527146
## 604  0.33246374 0.094736842 0.2507902447 0.0634527146
## 1215 0.33092401 0.095614035 0.2480757906 0.0634527146
## 982  0.32939086 0.096491228 0.2453958043 0.0634527146
## 1124 0.32786423 0.097368421 0.2427497315 0.0634527146
## 355  0.33033723 0.097368421 0.2447177671 0.0651962006
## 104  0.33280444 0.097368421 0.2466779315 0.0669573342
## 718  0.33128489 0.098245614 0.2440509233 0.0669573342
## 126  0.33374672 0.098245614 0.2459962670 0.0687361154
## 610  0.33223384 0.099122807 0.2433949996 0.0687361154
## 1465 0.33469036 0.099122807 0.2453257387 0.0705325444
## 129  0.33714130 0.099122807 0.2472488850 0.0723466210
## 168  0.33563533 0.100000000 0.2446660775 0.0723466210
## 598  0.33413553 0.100877193 0.2421148626 0.0723466210
## 410  0.33658162 0.100877193 0.2440170228 0.0741783453
## 219  0.33508824 0.101754386 0.2414901451 0.0741783453
## 1138 0.33360089 0.102631579 0.2389938504 0.0741783453
## 1359 0.33604218 0.102631579 0.2408753386 0.0760277172
## 4    0.33847813 0.102631579 0.2427497315 0.0778947368
## 1166 0.34090878 0.102631579 0.2446170337 0.0797794041
## 1089 0.33942831 0.103508772 0.2421310135 0.0797794041
## 542  0.34185406 0.103508772 0.2439848440 0.0816817191
## 1338 0.34037977 0.104385965 0.2415219388 0.0816817191
## 1259 0.34280067 0.104385965 0.2433624853 0.0836016817
## 1069 0.34133248 0.105263158 0.2409222849 0.0836016817
## 981  0.33987002 0.106140351 0.2385106740 0.0836016817
## 785  0.33841323 0.107017544 0.2361272287 0.0836016817
## 509  0.33696205 0.107894737 0.2337715327 0.0836016817
## 484  0.33551644 0.108771930 0.2314431774 0.0836016817
## 1100 0.33407635 0.109649123 0.2291417612 0.0836016817
## 801  0.33264173 0.110526316 0.2268668902 0.0836016817
## 740  0.33121253 0.111403509 0.2246181772 0.0836016817
## 939  0.32978870 0.112280702 0.2223952420 0.0836016817
## 677  0.32837020 0.113157895 0.2201977111 0.0836016817
## 912  0.32695697 0.114035088 0.2180252177 0.0836016817
## 313  0.32937543 0.114035088 0.2197884724 0.0855392920
## 324  0.32796759 0.114912281 0.2176341055 0.0855392920
## 1041 0.32656491 0.115789474 0.2155040444 0.0855392920
## 137  0.32897879 0.115789474 0.2172486453 0.0874945500
## 79   0.32758138 0.116666667 0.2151360544 0.0874945500
## 495  0.32618903 0.117543860 0.2130470675 0.0874945500
## 115  0.32859838 0.117543860 0.2147733171 0.0894674556
## 690  0.32721118 0.118421053 0.2127011744 0.0894674556
## 353  0.32961592 0.118421053 0.2144157210 0.0914580089
## 236  0.33201599 0.118421053 0.2161249815 0.0934662099
## 545  0.33441142 0.118421053 0.2178289474 0.0954920585
## 1160 0.33680225 0.118421053 0.2195276107 0.0975355549
## 1481 0.33542059 0.119298246 0.2174535281 0.0975355549
## 291  0.33780706 0.119298246 0.2191408823 0.0995966988
## 151  0.34018903 0.119298246 0.2208230063 0.1016754905
## 662  0.33881259 0.120175439 0.2187595298 0.1016754905
## 422  0.34119030 0.120175439 0.2204305699 0.1037719298
## 1514 0.33981885 0.121052632 0.2183834423 0.1037719298
## 1122 0.33845214 0.121929825 0.2163582103 0.1037719298
## 1476 0.34082583 0.121929825 0.2180125117 0.1058860168
## 186  0.34319519 0.121929825 0.2196618106 0.1080177515
## 307  0.34556026 0.121929825 0.2213061007 0.1101671338
## 204  0.34792107 0.121929825 0.2229453766 0.1123341638
## 535  0.35027768 0.121929825 0.2245796334 0.1145188415
## 854  0.34891667 0.122807018 0.2225477280 0.1145188415
## 174  0.34756028 0.123684211 0.2205370569 0.1145188415
## 1444 0.34620846 0.124561404 0.2185473397 0.1145188415
## 37   0.34856156 0.124561404 0.2201602584 0.1167211668
## 737  0.34721448 0.125438596 0.2181857501 0.1167211668
## 105  0.34956369 0.125438596 0.2197884724 0.1189411398
## 34   0.35190886 0.125438596 0.2213864618 0.1211787605
## 415  0.35425001 0.125438596 0.2229797132 0.1234340289
## 265  0.35290805 0.126315789 0.2210095858 0.1234340289
## 113  0.35524547 0.126315789 0.2225929007 0.1257069449
## 1024 0.35390816 0.127192982 0.2206376495 0.1257069449
## 14   0.35624189 0.127192982 0.2222111492 0.1279975086
## 1163 0.35857173 0.127192982 0.2237800385 0.1303057199
## 1221 0.35723926 0.128070175 0.2218343603 0.1303057199
## 1357 0.35956551 0.128070175 0.2233936175 0.1326315789
## 572  0.35823759 0.128947368 0.2214624384 0.1326315789
## 953  0.36056030 0.128947368 0.2230121792 0.1349750856
## 647  0.36287925 0.128947368 0.2245574323 0.1373362400
## 828  0.36519448 0.128947368 0.2260981943 0.1397150420
## 1251 0.36750603 0.128947368 0.2276344623 0.1421114917
## 1162 0.36981392 0.128947368 0.2291662342 0.1445255891
## 421  0.37211819 0.128947368 0.2306935081 0.1469573342
## 766  0.37079616 0.129824561 0.2287526853 0.1469573342
## 804  0.36947830 0.130701754 0.2268308021 0.1469573342
## 1148 0.36816457 0.131578947 0.2249276249 0.1469573342
## 1448 0.36685495 0.132456140 0.2230429233 0.1469573342
## 1325 0.36554941 0.133333333 0.2211764706 0.1469573342
## 875  0.36424792 0.134210526 0.2193280434 0.1469573342
## 33   0.36655030 0.134210526 0.2208230063 0.1494067269
## 480  0.36525306 0.135087719 0.2189877025 0.1494067269
## 1504 0.36395980 0.135964912 0.2171699763 0.1494067269
## 402  0.36625920 0.135964912 0.2186515438 0.1518737673
## 876  0.36497012 0.136842105 0.2168465368 0.1518737673
## 360  0.36726632 0.136842105 0.2183194909 0.1543584553
## 221  0.36598139 0.137719298 0.2165270303 0.1543584553
## 194  0.36827444 0.137719298 0.2179914693 0.1568607910
## 589  0.36699362 0.138596491 0.2162113856 0.1568607910
## 203  0.36928357 0.138596491 0.2176674062 0.1593807744
## 1268 0.36800682 0.139473684 0.2158995334 0.1593807744
## 1446 0.36673386 0.140350877 0.2141481713 0.1593807744
## 188  0.36902099 0.140350877 0.2155914060 0.1619184055
## 245  0.37130485 0.140350877 0.2170308732 0.1644736842
## 697  0.37003614 0.141228070 0.2152869371 0.1644736842
## 786  0.36877114 0.142105263 0.2135591079 0.1644736842
## 425  0.37105227 0.142105263 0.2149860623 0.1670466106
## 1169 0.37333021 0.142105263 0.2164093437 0.1696371847
## 187  0.37560498 0.142105263 0.2178289474 0.1722454064
## 19   0.37434442 0.142982456 0.2161040411 0.1722454064
## 486  0.37308750 0.143859649 0.2143948437 0.1722454064
## 856  0.37183420 0.144736842 0.2127011744 0.1722454064
## 445  0.37410662 0.144736842 0.2141043781 0.1748712758
## 1036 0.37285715 0.145614035 0.2124218032 0.1748712758
## 879  0.37161123 0.146491228 0.2107543954 0.1748712758
## 1039 0.37036883 0.147368421 0.2091019819 0.1748712758
## 954  0.37263892 0.147368421 0.2104890061 0.1775147929
## 1265 0.37140026 0.148245614 0.2088471890 0.1775147929
## 1346 0.37016507 0.149122807 0.2072200223 0.1775147929
## 591  0.36893333 0.150000000 0.2056073408 0.1775147929
## 851  0.36770501 0.150877193 0.2040089819 0.1775147929
## 516  0.36648009 0.151754386 0.2024247849 0.1775147929
## 896  0.36525854 0.152631579 0.2008545915 0.1775147929
## 859  0.36404034 0.153508772 0.1992982456 0.1775147929
## 1055 0.36630892 0.153508772 0.2006524967 0.1801759576
## 622  0.36509424 0.154385965 0.1991056309 0.1801759576
## 1171 0.36736009 0.154385965 0.2004526307 0.1828547701
## 695  0.36614889 0.155263158 0.1989151316 0.1828547701
## 984  0.36494097 0.156140351 0.1973910191 0.1828547701
## 1447 0.36373628 0.157017544 0.1958801461 0.1828547701
## 652  0.36599982 0.157017544 0.1972117065 0.1855512301
## 239  0.36826053 0.157017544 0.1985403419 0.1882653379
## 453  0.37051842 0.157017544 0.1998660439 0.1909970933
## 929  0.36931753 0.157894737 0.1983559844 0.1909970933
## 1236 0.36811981 0.158771930 0.1968588701 0.1909970933
## 521  0.36692526 0.159649123 0.1953745610 0.1909970933
## 908  0.36573384 0.160526316 0.1939029191 0.1909970933
## 694  0.36454553 0.161403509 0.1924438080 0.1909970933
## 373  0.36336032 0.162280702 0.1909970933 0.1909970933
## 523  0.36217819 0.163157895 0.1895626423 0.1909970933
## 359  0.36443462 0.163157895 0.1908572908 0.1937464964
## 1233 0.36325570 0.164035088 0.1894309517 0.1937464964
## 551  0.36207980 0.164912281 0.1880166158 0.1937464964
## 209  0.36433388 0.164912281 0.1893006350 0.1965135472
## 235  0.36658530 0.164912281 0.1905820566 0.1992982456
## 962  0.36541275 0.165789474 0.1891716710 0.1992982456
## 1043 0.36424316 0.166666667 0.1877730360 0.1992982456
## 206  0.36649231 0.166666667 0.1890440387 0.2021005917
## 134  0.36873886 0.166666667 0.1903125000 0.2049205855
## 304  0.37098284 0.166666667 0.1915784106 0.2077582269
## 318  0.37322427 0.166666667 0.1928417613 0.2106135160
## 1451 0.37205838 0.167543860 0.1914393518 0.2106135160
## 411  0.37429749 0.167543860 0.1926963752 0.2134864528
## 865  0.37313471 0.168421053 0.1913017111 0.2134864528
## 824  0.37537154 0.168421053 0.1925524700 0.2163770373
## 58   0.37421184 0.169298246 0.1911654669 0.2163770373
## 1245 0.37305501 0.170175439 0.1897897317 0.2163770373
## 1461 0.37190102 0.171052632 0.1884251491 0.2163770373
## 323  0.37074986 0.171929825 0.1870716052 0.2163770373
## 87   0.36960150 0.172807018 0.1857289876 0.2163770373
## 350  0.37183687 0.172807018 0.1869587825 0.2192852694
## 1235 0.37069149 0.173684211 0.1856232900 0.2192852694
## 893  0.36954888 0.174561404 0.1842985036 0.2192852694
## 1255 0.37178223 0.174561404 0.1855186376 0.2222111492
## 680  0.37064255 0.175438596 0.1842007941 0.2222111492
## 897  0.36950558 0.176315789 0.1828934429 0.2222111492
## 1173 0.36837133 0.177192982 0.1815964788 0.2222111492
## 998  0.36723977 0.178070175 0.1803097979 0.2222111492
## 312  0.36947150 0.178070175 0.1815131579 0.2251546766
## 751  0.37170093 0.178070175 0.1827143476 0.2281158518
## 1500 0.37057240 0.178947368 0.1814306436 0.2281158518
## 268  0.36944651 0.179824561 0.1801570220 0.2281158518
## 1252 0.37167403 0.179824561 0.1813489243 0.2310946746
## 717  0.37055095 0.180701754 0.1800817337 0.2310946746
## 693  0.36943047 0.181578947 0.1788244292 0.2310946746
## 1523 0.36831259 0.182456140 0.1775769135 0.2310946746
## 412  0.37053842 0.182456140 0.1787561313 0.2340911450
## 857  0.36942329 0.183333333 0.1775147929 0.2340911450
## 592  0.36831071 0.184210526 0.1762830549 0.2340911450
## 605  0.36720067 0.185087719 0.1750608238 0.2340911450
## 995  0.36609315 0.185964912 0.1738480074 0.2340911450
## 1214 0.36498814 0.186842105 0.1726445144 0.2340911450
## 210  0.36721265 0.186842105 0.1738042799 0.2371052632
## 586  0.36611029 0.187719298 0.1726065461 0.2371052632
## 1303 0.36501040 0.188596491 0.1714179595 0.2371052632
## 1341 0.36391297 0.189473684 0.1702384322 0.2371052632
## 158  0.36281798 0.190350877 0.1690678775 0.2371052632
## 156  0.36172540 0.191228070 0.1679062097 0.2371052632
## 1267 0.36063524 0.192105263 0.1667533438 0.2371052632
## 499  0.35954747 0.192982456 0.1656091963 0.2371052632
## 1127 0.35846208 0.193859649 0.1644736842 0.2371052632
## 396  0.36068572 0.193859649 0.1656040621 0.2401370290
## 1080 0.35960284 0.194736842 0.1644736842 0.2401370290
## 619  0.35852230 0.195614035 0.1633517831 0.2401370290
## 1196 0.35744409 0.196491228 0.1622382788 0.2401370290
## 878  0.35636820 0.197368421 0.1611330926 0.2401370290
## 366  0.35859036 0.197368421 0.1622482283 0.2431864424
## 83   0.36081051 0.197368421 0.1633617628 0.2462535036
## 800  0.35973720 0.198245614 0.1622580897 0.2462535036
## 978  0.35866618 0.199122807 0.1611625881 0.2462535036
## 1506 0.35759742 0.200000000 0.1600751821 0.2462535036
## 465  0.35653092 0.200877193 0.1589957966 0.2462535036
## 799  0.35546665 0.201754386 0.1579243574 0.2462535036
## 1234 0.35440461 0.202631579 0.1568607910 0.2462535036
## 1308 0.35334479 0.203508772 0.1558050250 0.2462535036
## 302  0.35556395 0.203508772 0.1568937618 0.2493382124
## 653  0.35778119 0.203508772 0.1579810494 0.2524405689
## 628  0.35672383 0.204385965 0.1569264483 0.2524405689
## 733  0.35566865 0.205263158 0.1558795145 0.2524405689
## 979  0.35461564 0.206140351 0.1548401780 0.2524405689
## 1200 0.35356477 0.207017544 0.1538083698 0.2524405689
## 1258 0.35578068 0.207017544 0.1548812414 0.2555605730
## 537  0.35799473 0.207017544 0.1559527348 0.2586982249
## 1007 0.35694629 0.207894737 0.1549219563 0.2586982249
## 1347 0.35589997 0.208771930 0.1538985798 0.2586982249
## 966  0.35485575 0.209649123 0.1528825388 0.2586982249
## 300  0.35706841 0.209649123 0.1539431151 0.2618535243
## 988  0.35602643 0.210526316 0.1529311775 0.2618535243
## 1052 0.35498654 0.211403509 0.1519264492 0.2618535243
## 655  0.35394871 0.212280702 0.1509288658 0.2618535243
## 201  0.35616001 0.212280702 0.1519786926 0.2650264715
## 1147 0.35512438 0.213157895 0.1509850616 0.2650264715
## 1275 0.35409078 0.214035088 0.1499984539 0.2650264715
## 983  0.35305922 0.214912281 0.1490188074 0.2650264715
## 229  0.35526920 0.214912281 0.1500580495 0.2682170663
## 863  0.35423980 0.215789474 0.1490822107 0.2682170663
## 452  0.35644821 0.215789474 0.1501171567 0.2714253088
## 341  0.35865494 0.215789474 0.1511508864 0.2746511990
## 1340 0.35762783 0.216666667 0.1501757813 0.2746511990
## 805  0.35660271 0.217543860 0.1492074700 0.2746511990
## 255  0.35880807 0.217543860 0.1502339292 0.2778947368
## 16   0.35778508 0.218421053 0.1492693386 0.2778947368
## 1485 0.35676405 0.219298246 0.1483114290 0.2778947368
## 1342 0.35574496 0.220175439 0.1473601423 0.2778947368
## 1374 0.35472781 0.221052632 0.1464154213 0.2778947368
## 1141 0.35371259 0.221929825 0.1454772091 0.2778947368
## 630  0.35269927 0.222807018 0.1445454497 0.2778947368
## 1027 0.35168786 0.223684211 0.1436200875 0.2778947368
## 1253 0.35389268 0.223684211 0.1446244986 0.2811559224
## 963  0.35288330 0.224561404 0.1437025206 0.2811559224
## 1442 0.35187581 0.225438596 0.1427868358 0.2811559224
## 955  0.35407935 0.225438596 0.1437843051 0.2844347555
## 1180 0.35307387 0.226315789 0.1428719318 0.2844347555
## 53   0.35527603 0.226315789 0.1438654487 0.2877312364
## 322  0.35427256 0.227192982 0.1429563631 0.2877312364
## 1458 0.35327093 0.228070175 0.1420534219 0.2877312364
## 759  0.35547188 0.228070175 0.1430401377 0.2910453649
## 1307 0.35447224 0.228947368 0.1421404141 0.2910453649
## 949  0.35667186 0.228947368 0.1431232632 0.2943771411
## 519  0.35567420 0.229824561 0.1422267347 0.2943771411
## 1139 0.35467834 0.230701754 0.1413362069 0.2943771411
## 9    0.35687683 0.230701754 0.1423123912 0.2977265649
## 198  0.35907387 0.230701754 0.1432875965 0.3010936365
## 1184 0.35808015 0.231578947 0.1423973914 0.3010936365
## 118  0.36027594 0.231578947 0.1433688190 0.3044783557
## 443  0.36247032 0.231578947 0.1443392628 0.3078807225
## 1441 0.36147875 0.232456140 0.1434494218 0.3078807225
## 1222 0.36048894 0.233333333 0.1425654525 0.3078807225
## 461  0.35950089 0.234210526 0.1416873065 0.3078807225
## 406  0.36169445 0.234210526 0.1426485281 0.3113007370
## 277  0.36070834 0.235087719 0.1417734247 0.3113007370
## 673  0.35972395 0.235964912 0.1409040538 0.3113007370
## 609  0.35874129 0.236842105 0.1400403688 0.3113007370
## 149  0.36093407 0.236842105 0.1409925039 0.3147383993
## 1278 0.35995332 0.237719298 0.1401317569 0.3147383993
## 180  0.35897426 0.238596491 0.1392766080 0.3147383993
## 388  0.35799690 0.239473684 0.1384270116 0.3147383993
## 55   0.36018894 0.239473684 0.1393701937 0.3181937091
## 1059 0.36237970 0.239473684 0.1403125000 0.3216666667
## 1277 0.36140441 0.240350877 0.1394630877 0.3216666667
## 299  0.36359410 0.240350877 0.1404018700 0.3251572719
## 1143 0.36262068 0.241228070 0.1395552978 0.3251572719
## 1306 0.36164892 0.242105263 0.1387141591 0.3251572719
## 1403 0.36067881 0.242982456 0.1378784103 0.3251572719
## 1345 0.35971035 0.243859649 0.1370480083 0.3251572719
## 536  0.36189961 0.243859649 0.1379754706 0.3286655248
## 1022 0.36093298 0.244736842 0.1371477748 0.3286655248
## 367  0.36312124 0.244736842 0.1380718261 0.3321914253
## 261  0.36215644 0.245614035 0.1372468194 0.3321914253
## 1088 0.36119324 0.246491228 0.1364270423 0.3321914253
## 1155 0.36023165 0.247368421 0.1356124532 0.3321914253
## 293  0.36241936 0.247368421 0.1365280080 0.3357349735
## 614  0.36145957 0.248245614 0.1357160180 0.3357349735
## 1172 0.36364634 0.248245614 0.1366282507 0.3392961694
## 375  0.36268835 0.249122807 0.1358188437 0.3392961694
## 363  0.36487420 0.249122807 0.1367277781 0.3428750130
## 696  0.36391800 0.250000000 0.1359209381 0.3428750130
## 952  0.36610297 0.250000000 0.1368265977 0.3464715042
## 17   0.36514856 0.250877193 0.1360223089 0.3464715042
## 914  0.36419570 0.251754386 0.1352230262 0.3464715042
## 2    0.36324437 0.252631579 0.1344287108 0.3464715042
## 1343 0.36229459 0.253508772 0.1336393240 0.3464715042
## 189  0.36447938 0.253508772 0.1345343339 0.3500856431
## 417  0.36666312 0.253508772 0.1354286145 0.3537174297
## 345  0.36884581 0.253508772 0.1363221558 0.3573668639
## 625  0.36789825 0.254385965 0.1355303308 0.3573668639
## 1498 0.36695221 0.255263158 0.1347433723 0.3573668639
## 64   0.36913436 0.255263158 0.1356313385 0.3610339458
## 199  0.37131551 0.255263158 0.1365185733 0.3647186754
## 1047 0.37037147 0.256140351 0.1357316450 0.3647186754
## 1489 0.36942892 0.257017544 0.1349495179 0.3647186754
## 426  0.37160959 0.257017544 0.1358312576 0.3684210526
## 675  0.37066878 0.257894737 0.1350515245 0.3684210526
## 1000 0.36972944 0.258771930 0.1342765240 0.3684210526
## 119  0.37190967 0.258771930 0.1351528300 0.3721410775
## 672  0.37097206 0.259649123 0.1343801778 0.3721410775
## 1239 0.37003591 0.260526316 0.1336121912 0.3721410775
## 1486 0.36910120 0.261403509 0.1328488351 0.3721410775
## 1295 0.36816794 0.262280702 0.1320900745 0.3721410775
## 444  0.37034829 0.262280702 0.1329563578 0.3758787501
## 1456 0.36941673 0.263157895 0.1321998402 0.3758787501
## 576  0.36848659 0.264035088 0.1314478537 0.3758787501
## 553  0.36755787 0.264912281 0.1307003645 0.3758787501
## 787  0.36663056 0.265789474 0.1299573391 0.3758787501
## 1254 0.36881106 0.265789474 0.1308137625 0.3796340704
## 587  0.36788542 0.266666667 0.1300728796 0.3796340704
## 1313 0.36696116 0.267543860 0.1293363988 0.3796340704
## 485  0.36603830 0.268421053 0.1286042872 0.3796340704
## 489  0.36511681 0.269298246 0.1278765126 0.3796340704
## 1264 0.36419669 0.270175439 0.1271530429 0.3796340704
## 1530 0.36327793 0.271052632 0.1264338463 0.3796340704
## 142  0.36545918 0.271052632 0.1272760586 0.3834070383
## 163  0.36454204 0.271929825 0.1265588549 0.3834070383
## 1369 0.36672275 0.271929825 0.1273982688 0.3871976539
## 467  0.36890266 0.271929825 0.1282371238 0.3910059172
## 1126 0.36798742 0.272807018 0.1275196814 0.3910059172
## 1380 0.36707352 0.273684211 0.1268064319 0.3910059172
## 565  0.36616094 0.274561404 0.1260973449 0.3910059172
## 1324 0.36524969 0.275438596 0.1253923900 0.3910059172
## 552  0.36433975 0.276315789 0.1246915372 0.3910059172
## 54   0.36652029 0.276315789 0.1255188202 0.3948318281
## 66   0.36561194 0.277192982 0.1248198522 0.3948318281
## 823  0.36779202 0.277192982 0.1256444381 0.3986753867
## 1406 0.36688525 0.278070175 0.1249473454 0.3986753867
## 987  0.36597978 0.278947368 0.1242542751 0.3986753867
## 502  0.36507560 0.279824561 0.1235651984 0.3986753867
## 1168 0.36725583 0.279824561 0.1243827955 0.4025365930
## 192  0.36635321 0.280701754 0.1236955357 0.4025365930
## 969  0.36545186 0.281578947 0.1230122167 0.4025365930
## 230  0.36763199 0.281578947 0.1238250487 0.4064154469
## 382  0.36673220 0.282456140 0.1231435138 0.4064154469
## 931  0.36583366 0.283333333 0.1224658680 0.4064154469
## 369  0.36493638 0.284210526 0.1217920835 0.4064154469
## 1431 0.36404034 0.285087719 0.1211221331 0.4064154469
## 1522 0.36314554 0.285964912 0.1204559894 0.4064154469
## 408  0.36532649 0.285964912 0.1212577921 0.4103119485
## 855  0.36443321 0.286842105 0.1205933320 0.4103119485
## 1457 0.36354115 0.287719298 0.1199326294 0.4103119485
## 450  0.36572209 0.287719298 0.1207298246 0.4142260978
## 491  0.36483155 0.288596491 0.1200707756 0.4142260978
## 1218 0.36394222 0.289473684 0.1194154358 0.4142260978
## 121  0.36305409 0.290350877 0.1187637791 0.4142260978
## 339  0.36523534 0.290350877 0.1195543565 0.4181578947
## 440  0.36434871 0.291228070 0.1189043026 0.4181578947
## 314  0.36652971 0.291228070 0.1196924278 0.4221073394
## 1496 0.36564458 0.292105263 0.1190439697 0.4221073394
## 130  0.36782535 0.292105263 0.1198296575 0.4260744316
## 913  0.36694172 0.292982456 0.1191827880 0.4260744316
## 401  0.36912227 0.292982456 0.1199660533 0.4300591716
## 234  0.37130231 0.292982456 0.1207489138 0.4340615592
## 781  0.37042051 0.293859649 0.1201016225 0.4340615592
## 153  0.37260037 0.293859649 0.1208820761 0.4380815945
## 222  0.37172007 0.294736842 0.1202363727 0.4380815945
## 541  0.37389979 0.294736842 0.1210144338 0.4421192775
## 20   0.37607903 0.294736842 0.1217920835 0.4461746081
## 701  0.37520058 0.295614035 0.1211459942 0.4461746081
## 133  0.37737972 0.295614035 0.1219212668 0.4502475864
## 691  0.37650278 0.296491228 0.1212767644 0.4502475864
## 611  0.37562699 0.297368421 0.1206357824 0.4502475864
## 749  0.37780640 0.297368421 0.1214067515 0.4543382124
## 1150 0.37693210 0.298245614 0.1207673291 0.4543382124
## 1159 0.37605894 0.299122807 0.1201313833 0.4543382124
## 1450 0.37518691 0.300000000 0.1194988905 0.4543382124
## 977  0.37431599 0.300877193 0.1188698274 0.4543382124
## 169  0.37344619 0.301754386 0.1182441707 0.4543382124
## 1028 0.37257751 0.302631579 0.1176218975 0.4543382124
## 290  0.37475868 0.302631579 0.1183809501 0.4584464860
## 539  0.37693949 0.302631579 0.1191396400 0.4625724073
## 1445 0.37607264 0.303508772 0.1185169272 0.4625724073
## 1228 0.37520688 0.304385965 0.1178975603 0.4625724073
## 1190 0.37434222 0.305263158 0.1172815170 0.4625724073
## 76   0.37347864 0.306140351 0.1166687749 0.4625724073
## 376  0.37261613 0.307017544 0.1160593121 0.4625724073
## 665  0.37175471 0.307894737 0.1154531067 0.4625724073
## 1164 0.37393740 0.307894737 0.1162001602 0.4667159763
## 648  0.37611978 0.307894737 0.1169468862 0.4708771930
## 646  0.37830185 0.307894737 0.1176932767 0.4750560573
## 416  0.38048364 0.307894737 0.1184393239 0.4792525693
## 478  0.37962481 0.308771930 0.1178289474 0.4792525693
## 687  0.37876704 0.309649123 0.1172218003 0.4792525693
## 643  0.38094935 0.309649123 0.1179638381 0.4834667290
## 1009 0.38009303 0.310526316 0.1173580755 0.4834667290
## 398  0.38227548 0.310526316 0.1180979555 0.4876985363
## 852  0.38142062 0.311403509 0.1174935717 0.4876985363
## 1183 0.38056680 0.312280702 0.1168923613 0.4876985363
## 1197 0.37971402 0.313157895 0.1162943035 0.4876985363
## 754  0.38189746 0.313157895 0.1170284411 0.4919479913
## 584  0.38104612 0.314035088 0.1164317224 0.4919479913
## 466  0.38019581 0.314912281 0.1158381190 0.4919479913
## 446  0.38237987 0.314912281 0.1165683646 0.4962150939
## 347  0.38456374 0.314912281 0.1172982933 0.5004998443
## 303  0.38674743 0.314912281 0.1180278979 0.5048022423
## 1185 0.38589941 0.315789474 0.1174320786 0.5048022423
## 569  0.38505239 0.316666667 0.1168393450 0.5048022423
## 43   0.38723679 0.316666667 0.1175651119 0.5091222880
## 397  0.38942104 0.316666667 0.1182905555 0.5134599813
## 1384 0.38857591 0.317543860 0.1176973994 0.5134599813
## 35   0.38773179 0.318421053 0.1171072962 0.5134599813
## 1276 0.38688867 0.319298246 0.1165202262 0.5134599813
## 1033 0.38604654 0.320175439 0.1159361701 0.5134599813
## 1006 0.38520540 0.321052632 0.1153551086 0.5134599813
## 379  0.38436524 0.321929825 0.1147770226 0.5134599813
## 835  0.38352607 0.322807018 0.1142018932 0.5134599813
## 101  0.38571330 0.322807018 0.1149149486 0.5178153223
## 997  0.38487554 0.323684211 0.1143410480 0.5178153223
## 1478 0.38403875 0.324561404 0.1137700699 0.5178153223
## 806  0.38320293 0.325438596 0.1132019958 0.5178153223
## 891  0.38236806 0.326315789 0.1126368073 0.5178153223
## 557  0.38153414 0.327192982 0.1120744862 0.5178153223
## 600  0.38070117 0.328070175 0.1115150144 0.5178153223
## 161  0.37986915 0.328947368 0.1109583739 0.5178153223
## 1379 0.37903806 0.329824561 0.1104045470 0.5178153223
## 143  0.37820790 0.330701754 0.1098535159 0.5178153223
## 522  0.37737867 0.331578947 0.1093052632 0.5178153223
## 1423 0.37655036 0.332456140 0.1087597713 0.5178153223
## 28   0.37572297 0.333333333 0.1082170231 0.5178153223
## 577  0.37489649 0.334210526 0.1076770015 0.5178153223
## 947  0.37708952 0.334210526 0.1083679166 0.5221883110
## 362  0.37928256 0.334210526 0.1090586300 0.5265789474
## 1525 0.37845790 0.335087719 0.1085180105 0.5265789474
## 1353 0.37763415 0.335964912 0.1079800904 0.5265789474
## 1263 0.37982814 0.335964912 0.1086673110 0.5309872314
## 315  0.38202218 0.335964912 0.1093543290 0.5354131631
## 1216 0.38120026 0.336842105 0.1088158245 0.5354131631
## 297  0.38339483 0.336842105 0.1095010090 0.5398567424
## 689  0.38257428 0.337719298 0.1089635570 0.5398567424
## 599  0.38175462 0.338596491 0.1084287648 0.5398567424
## 657  0.38093584 0.339473684 0.1078966161 0.5398567424
## 951  0.38313194 0.339473684 0.1085767585 0.5443179695
## 644  0.38532814 0.339473684 0.1092567034 0.5487968442
## 745  0.38451122 0.340350877 0.1087239801 0.5487968442
## 494  0.38369517 0.341228070 0.1081938744 0.5487968442
## 1032 0.38288000 0.342105263 0.1076663705 0.5487968442
## 948  0.38507780 0.342105263 0.1083413466 0.5532933666
## 830  0.38727574 0.342105263 0.1090161305 0.5578075366
## 1284 0.38646244 0.342982456 0.1084880554 0.5578075366
## 22   0.38564999 0.343859649 0.1079625567 0.5578075366
## 807  0.38483841 0.344736842 0.1074396190 0.5578075366
## 1428 0.38402767 0.345614035 0.1069192266 0.5578075366
## 985  0.38321778 0.346491228 0.1064013643 0.5578075366
## 923  0.38240874 0.347368421 0.1058860168 0.5578075366
## 1320 0.38160053 0.348245614 0.1053731689 0.5578075366
## 152  0.38380221 0.348245614 0.1060368362 0.5623393543
## 892  0.38299535 0.349122807 0.1055249259 0.5623393543
## 392  0.38218932 0.350000000 0.1050154884 0.5623393543
## 267  0.38138412 0.350877193 0.1045085089 0.5623393543
## 819  0.38358757 0.350877193 0.1051674000 0.5668888197
## 57   0.38278370 0.351754386 0.1046613323 0.5668888197
## 1415 0.38198065 0.352631579 0.1041576964 0.5668888197
## 162  0.38117842 0.353508772 0.1036564778 0.5668888197
## 739  0.38037699 0.354385965 0.1031576622 0.5668888197
## 269  0.37957636 0.355263158 0.1026612352 0.5668888197
## 1257 0.38178269 0.355263158 0.1033123776 0.5714559327
## 1287 0.38098340 0.356140351 0.1028168151 0.5714559327
## 331  0.38018489 0.357017544 0.1023236162 0.5714559327
## 1008 0.37938718 0.357894737 0.1018327668 0.5714559327
## 1015 0.37859025 0.358771930 0.1013442531 0.5714559327
## 1205 0.37779410 0.359649123 0.1008580613 0.5714559327
## 626  0.37699872 0.360526316 0.1003741776 0.5714559327
## 664  0.37620412 0.361403509 0.0998925886 0.5714559327
## 1199 0.37541028 0.362280702 0.0994132807 0.5714559327
## 590  0.37461721 0.363157895 0.0989362406 0.5714559327
## 1483 0.37382489 0.364035088 0.0984614549 0.5714559327
## 107  0.37603692 0.364035088 0.0990975656 0.5760406934
## 1509 0.37524590 0.364912281 0.0986235481 0.5760406934
## 1225 0.37445564 0.365789474 0.0981517620 0.5760406934
## 666  0.37366612 0.366666667 0.0976821942 0.5760406934
## 837  0.37287734 0.367543860 0.0972148317 0.5760406934
## 1291 0.37208930 0.368421053 0.0967496617 0.5760406934
## 434  0.37130199 0.369298246 0.0962866716 0.5760406934
## 358  0.37051541 0.370175439 0.0958258486 0.5760406934
## 262  0.36972956 0.371052632 0.0953671801 0.5760406934
## 273  0.36894442 0.371929825 0.0949106538 0.5760406934
## 663  0.36816000 0.372807018 0.0944562573 0.5760406934
## 1279 0.36737630 0.373684211 0.0940039781 0.5760406934
## 368  0.36659330 0.374561404 0.0935538043 0.5760406934
## 864  0.36581100 0.375438596 0.0931057235 0.5760406934
## 403  0.36803061 0.375438596 0.0937229160 0.5806431018
## 1437 0.36724958 0.376315789 0.0932754892 0.5806431018
## 1149 0.36646924 0.377192982 0.0928301346 0.5806431018
## 1208 0.36568959 0.378070175 0.0923868404 0.5806431018
## 784  0.36491063 0.378947368 0.0919455948 0.5806431018
## 274  0.36413235 0.379824561 0.0915063861 0.5806431018
## 272  0.36335476 0.380701754 0.0910692027 0.5806431018
## 337  0.36557823 0.380701754 0.0916778862 0.5852631579
## 431  0.36480189 0.381578947 0.0912413127 0.5852631579
## 1121 0.36402621 0.382456140 0.0908067446 0.5852631579
## 1167 0.36625133 0.382456140 0.0914126338 0.5899008616
## 527  0.36547691 0.383333333 0.0909786667 0.5899008616
## 1249 0.36470315 0.384210526 0.0905466853 0.5899008616
## 669  0.36393005 0.385087719 0.0901166784 0.5899008616
## 767  0.36315761 0.385964912 0.0896886349 0.5899008616
## 427  0.36238582 0.386842105 0.0892625436 0.5899008616
## 1499 0.36161468 0.387719298 0.0888383935 0.5899008616
## 1368 0.36384387 0.387719298 0.0894360018 0.5945562130
## 822  0.36607361 0.387719298 0.0900336345 0.5992292121
## 582  0.36530431 0.388596491 0.0896086790 0.5992292121
## 238  0.36753523 0.388596491 0.0902049684 0.6039198588
## 890  0.36676719 0.389473684 0.0897805803 0.6039198588
## 1433 0.36599978 0.390350877 0.0893581098 0.6039198588
## 1314 0.36523302 0.391228070 0.0889375463 0.6039198588
## 424  0.36746637 0.391228070 0.0895297992 0.6086281532
## 1250 0.36670085 0.392105263 0.0891097871 0.6086281532
## 871  0.36593597 0.392982456 0.0886916638 0.6086281532
## 159  0.36517171 0.393859649 0.0882754187 0.6086281532
## 68   0.36740755 0.393859649 0.0888636815 0.6133540953
## 1398 0.36664454 0.394736842 0.0884479723 0.6133540953
## 1464 0.36888167 0.394736842 0.0890349372 0.6180976850
## 148  0.37111946 0.394736842 0.0896219297 0.6228589225
## 831  0.37035835 0.395614035 0.0892054357 0.6228589225
## 874  0.36959786 0.396491228 0.0887907976 0.6228589225
## 720  0.36883798 0.397368421 0.0883780052 0.6228589225
## 335  0.36807872 0.398245614 0.0879670482 0.6228589225
## 100  0.36732006 0.399122807 0.0875579166 0.6228589225
## 496  0.36656200 0.400000000 0.0871506005 0.6228589225
## 654  0.36580453 0.400877193 0.0867450898 0.6228589225
## 1220 0.36504767 0.401754386 0.0863413747 0.6228589225
## 21   0.36429139 0.402631579 0.0859394453 0.6228589225
## 642  0.36653575 0.402631579 0.0865147150 0.6276378075
## 1266 0.36578073 0.403508772 0.0861132709 0.6276378075
## 635  0.36502628 0.404385965 0.0857135960 0.6276378075
## 957  0.36727273 0.404385965 0.0862863475 0.6324343403
## 1098 0.36651954 0.405263158 0.0858871509 0.6324343403
## 692  0.36576692 0.406140351 0.0854897071 0.6324343403
## 1518 0.36501488 0.407017544 0.0850940065 0.6324343403
## 713  0.36426342 0.407894737 0.0847000398 0.6324343403
## 332  0.36351252 0.408771930 0.0843077976 0.6324343403
## 986  0.36276218 0.409649123 0.0839172705 0.6324343403
## 645  0.36501348 0.409649123 0.0844824547 0.6372485207
## 1439 0.36426439 0.410526316 0.0840923730 0.6372485207
## 404  0.36351585 0.411403509 0.0837039907 0.6372485207
## 1207 0.36276787 0.412280702 0.0833172987 0.6372485207
## 97   0.36202044 0.413157895 0.0829322881 0.6372485207
## 471  0.36127356 0.414035088 0.0825489498 0.6372485207
## 469  0.36352916 0.414035088 0.0831079492 0.6420803488
## 925  0.36278352 0.414912281 0.0827250310 0.6420803488
## 63   0.36504068 0.414912281 0.0832828758 0.6469298246
## 556  0.36429629 0.415789474 0.0829003780 0.6469298246
## 721  0.36355244 0.416666667 0.0825195313 0.6469298246
## 46   0.36280912 0.417543860 0.0821403268 0.6469298246
## 433  0.36206633 0.418421053 0.0817627558 0.6469298246
## 1194 0.36132407 0.419298246 0.0813868097 0.6469298246
## 220  0.36058234 0.420175439 0.0810124798 0.6469298246
## 932  0.35984112 0.421052632 0.0806397576 0.6469298246
## 601  0.35910042 0.421929825 0.0802686346 0.6469298246
## 791  0.35836024 0.422807018 0.0798991024 0.6469298246
## 25   0.36062479 0.422807018 0.0804460283 0.6517969480
## 763  0.35988584 0.423684211 0.0800768693 0.6517969480
## 250  0.35914740 0.424561404 0.0797092869 0.6517969480
## 593  0.35840946 0.425438596 0.0793432730 0.6517969480
## 843  0.35767203 0.426315789 0.0789788191 0.6517969480
## 8    0.35994049 0.426315789 0.0795210477 0.6566817191
## 390  0.35920430 0.427192982 0.0791569508 0.6566817191
## 497  0.35846860 0.428070175 0.0787944003 0.6566817191
## 296  0.36073955 0.428070175 0.0793343653 0.6615841379
## 399  0.36301153 0.428070175 0.0798744486 0.6665042043
## 915  0.36227784 0.428947368 0.0795110669 0.6665042043
## 656  0.36154463 0.429824561 0.0791492208 0.6665042043
## 841  0.36081192 0.430701754 0.0787889023 0.6665042043
## 774  0.36007969 0.431578947 0.0784301033 0.6665042043
## 686  0.35934795 0.432456140 0.0780728160 0.6665042043
## 1502 0.35861668 0.433333333 0.0777170326 0.6665042043
## 1140 0.35788588 0.434210526 0.0773627453 0.6665042043
## 627  0.35715556 0.435087719 0.0770099464 0.6665042043
## 649  0.35943475 0.435087719 0.0775407761 0.6714419184
## 1111 0.35870568 0.435964912 0.0771882985 0.6714419184
## 946  0.36098677 0.435964912 0.0777181053 0.6763972802
## 48   0.36025895 0.436842105 0.0773659497 0.6763972802
## 393  0.35953159 0.437719298 0.0770152646 0.6763972802
## 1067 0.35880470 0.438596491 0.0766660425 0.6763972802
## 27   0.35807826 0.439473684 0.0763182757 0.6763972802
## 688  0.35735228 0.440350877 0.0759719570 0.6763972802
## 1386 0.35662675 0.441228070 0.0756270788 0.6763972802
## 510  0.35590166 0.442105263 0.0752836338 0.6763972802
## 124  0.35818949 0.442105263 0.0758055713 0.6813702896
## 637  0.35746566 0.442982456 0.0754624192 0.6813702896
## 15   0.35674228 0.443859649 0.0751206883 0.6813702896
## 575  0.35601933 0.444736842 0.0747803712 0.6813702896
## 1136 0.35529681 0.445614035 0.0744414608 0.6813702896
## 944  0.35457473 0.446491228 0.0741039499 0.6813702896
## 1436 0.35385307 0.447368421 0.0737678314 0.6813702896
## 32   0.35614703 0.447368421 0.0742831738 0.6863609467
## 1238 0.35542664 0.448245614 0.0739473256 0.6863609467
## 834  0.35470666 0.449122807 0.0736128582 0.6863609467
## 1091 0.35398711 0.450000000 0.0732797646 0.6863609467
## 549  0.35326797 0.450877193 0.0729480379 0.6863609467
## 1119 0.35254925 0.451754386 0.0726176713 0.6863609467
## 524  0.35183094 0.452631579 0.0722886578 0.6863609467
## 1186 0.35111304 0.453508772 0.0719609907 0.6863609467
## 86   0.35039554 0.454385965 0.0716346632 0.6863609467
## 880  0.34967844 0.455263158 0.0713096686 0.6863609467
## 167  0.34896173 0.456140351 0.0709860002 0.6863609467
## 327  0.34824543 0.457017544 0.0706636514 0.6863609467
## 1490 0.34752951 0.457894737 0.0703426155 0.6863609467
## 1497 0.34681398 0.458771930 0.0700228861 0.6863609467
## 1001 0.34609883 0.459649123 0.0697044566 0.6863609467
## 102  0.34840596 0.459649123 0.0702046083 0.6913692515
## 1355 0.34769206 0.460526316 0.0698863937 0.6913692515
## 910  0.34697854 0.461403509 0.0695694686 0.6913692515
## 1505 0.34626540 0.462280702 0.0692538263 0.6913692515
## 320  0.34857651 0.462280702 0.0697509519 0.6963952040
## 1394 0.34786463 0.463157895 0.0694355177 0.6963952040
## 65   0.35017802 0.463157895 0.0699317739 0.7014388041
## 114  0.35249284 0.463157895 0.0704282240 0.7065000519
## 574  0.35178311 0.464035088 0.0701119378 0.7065000519
## 778  0.35107377 0.464912281 0.0697969226 0.7065000519
## 1151 0.35036479 0.465789474 0.0694831721 0.7065000519
## 374  0.34965617 0.466666667 0.0691706802 0.7065000519
## 965  0.34894793 0.467543860 0.0688594405 0.7065000519
## 99   0.34824004 0.468421053 0.0685494470 0.7065000519
## 1086 0.34753251 0.469298246 0.0682406936 0.7065000519
## 1360 0.34985515 0.469298246 0.0687299726 0.7115789474
## 125  0.35217929 0.469298246 0.0692194531 0.7166754905
## 613  0.35147397 0.470175439 0.0689098518 0.7166754905
## 607  0.35076901 0.471052632 0.0686014829 0.7166754905
## 756  0.35309654 0.471052632 0.0690890879 0.7217896813
## 1142 0.35239287 0.471929825 0.0687809129 0.7217896813
## 621  0.35168956 0.472807018 0.0684739607 0.7217896813
## 679  0.35098659 0.473684211 0.0681682253 0.7217896813
## 214  0.35028397 0.474561404 0.0678637008 0.7217896813
## 252  0.35261687 0.474561404 0.0683473951 0.7269215198
## 710  0.35191555 0.475438596 0.0680430544 0.7269215198
## 407  0.35425101 0.475438596 0.0685259311 0.7320710059
## 1031 0.35355101 0.476315789 0.0682217754 0.7320710059
## 813  0.35285135 0.477192982 0.0679188174 0.7320710059
## 423  0.35519038 0.477192982 0.0683998667 0.7372381397
## 191  0.35449205 0.478070175 0.0680970911 0.7372381397
## 960  0.35379405 0.478947368 0.0677955040 0.7372381397
## 1103 0.35309638 0.479824561 0.0674950996 0.7372381397
## 233  0.35544005 0.479824561 0.0679733321 0.7424229212
## 305  0.35778541 0.479824561 0.0684517651 0.7476253504
## 457  0.35709009 0.480701754 0.0681505387 0.7476253504
## 1519 0.35639510 0.481578947 0.0678504880 0.7476253504
## 940  0.35570044 0.482456140 0.0675516074 0.7476253504
## 919  0.35500611 0.483333333 0.0672538913 0.7476253504
## 394  0.35431211 0.484210526 0.0669573342 0.7476253504
## 511  0.35361842 0.485087719 0.0666619305 0.7476253504
## 456  0.35292505 0.485964912 0.0663676747 0.7476253504
## 12   0.35527930 0.485964912 0.0668393762 0.7528454272
## 429  0.35458728 0.486842105 0.0665452818 0.7528454272
## 773  0.35389558 0.487719298 0.0662523266 0.7528454272
## 615  0.35320419 0.488596491 0.0659605051 0.7528454272
## 1108 0.35251311 0.489473684 0.0656698120 0.7528454272
## 683  0.35182234 0.490350877 0.0653802419 0.7528454272
## 1391 0.35113186 0.491228070 0.0650917896 0.7528454272
## 1246 0.35044168 0.492105263 0.0648044498 0.7528454272
## 608  0.34975180 0.492982456 0.0645182171 0.7528454272
## 260  0.35211628 0.492982456 0.0649823537 0.7580831517
## 651  0.35448262 0.492982456 0.0654467106 0.7633385238
## 103  0.35379518 0.493859649 0.0651596579 0.7633385238
## 849  0.35310804 0.494736842 0.0648737061 0.7633385238
## 1333 0.35242119 0.495614035 0.0645888501 0.7633385238
## 7    0.35173463 0.496491228 0.0643050847 0.7633385238
## 1114 0.35104836 0.497368421 0.0640224048 0.7633385238
## 547  0.35342204 0.497368421 0.0644822088 0.7686115437
## 386  0.35273715 0.498245614 0.0641996619 0.7686115437
## 671  0.35205255 0.499122807 0.0639181924 0.7686115437
## 1513 0.35136822 0.500000000 0.0636377953 0.7686115437
## 241  0.35374718 0.500000000 0.0640949905 0.7739022111
## 636  0.35306426 0.500877193 0.0638147215 0.7739022111
## 1206 0.35238161 0.501754386 0.0635355169 0.7739022111
## 901  0.35169924 0.502631579 0.0632573718 0.7739022111
## 475  0.35101714 0.503508772 0.0629802813 0.7739022111
## 325  0.35033530 0.504385965 0.0627042405 0.7739022111
## 217  0.34965373 0.505263158 0.0624292446 0.7739022111
## 385  0.34897242 0.506140351 0.0621552887 0.7739022111
## 477  0.34829138 0.507017544 0.0618823681 0.7739022111
## 365  0.35068145 0.507017544 0.0623323439 0.7792105263
## 492  0.35000182 0.507894737 0.0620595323 0.7792105263
## 1072 0.34932244 0.508771930 0.0617877483 0.7792105263
## 1182 0.34864331 0.509649123 0.0615169873 0.7792105263
## 612  0.34796444 0.510526316 0.0612472445 0.7792105263
## 1507 0.34728581 0.511403509 0.0609785153 0.7792105263
## 999  0.34660742 0.512280702 0.0607107950 0.7792105263
## 1389 0.34592928 0.513157895 0.0604440789 0.7792105263
## 1040 0.34525137 0.514035088 0.0601783626 0.7792105263
## 301  0.34765295 0.514035088 0.0606212728 0.7845364892
## 1524 0.34697647 0.514912281 0.0603556478 0.7845364892
## 1132 0.34630023 0.515789474 0.0600910152 0.7845364892
## 603  0.34562422 0.516666667 0.0598273707 0.7845364892
## 30   0.34494843 0.517543860 0.0595647096 0.7845364892
## 228  0.34427288 0.518421053 0.0593030275 0.7845364892
## 533  0.34359755 0.519298246 0.0590423200 0.7845364892
## 364  0.34600856 0.519298246 0.0594800935 0.7898800997
## 1023 0.34533467 0.520175439 0.0592194657 0.7898800997
## 420  0.34774915 0.520175439 0.0596566035 0.7952413578
## 1188 0.34707672 0.521052632 0.0593960566 0.7952413578
## 1092 0.34640452 0.521929825 0.0591364749 0.7952413578
## 1016 0.34573253 0.522807018 0.0588778539 0.7952413578
## 1378 0.34506076 0.523684211 0.0586201894 0.7952413578
## 458  0.34438920 0.524561404 0.0583634770 0.7952413578
## 634  0.34371785 0.525438596 0.0581077124 0.7952413578
## 1213 0.34304670 0.526315789 0.0578528914 0.7952413578
## 1400 0.34237576 0.527192982 0.0575990097 0.7952413578
## 178  0.34170502 0.528070175 0.0573460632 0.7952413578
## 123  0.34413313 0.528070175 0.0577755549 0.8006202637
## 172  0.34346387 0.528947368 0.0575226712 0.8006202637
## 1312 0.34279481 0.529824561 0.0572707161 0.8006202637
## 1491 0.34212594 0.530701754 0.0570196854 0.8006202637
## 1517 0.34145727 0.531578947 0.0567695751 0.8006202637
## 1125 0.34078878 0.532456140 0.0565203809 0.8006202637
## 1174 0.34012048 0.533333333 0.0562720988 0.8006202637
## 348  0.34255878 0.533333333 0.0566966822 0.8060168172
## 504  0.34189198 0.534210526 0.0564484529 0.8060168172
## 1014 0.34122536 0.535087719 0.0562011293 0.8060168172
## 1226 0.34055893 0.535964912 0.0559547076 0.8060168172
## 1434 0.33989267 0.536842105 0.0557091837 0.8060168172
## 1118 0.33922659 0.537719298 0.0554645535 0.8060168172
## 1087 0.33856067 0.538596491 0.0552208132 0.8060168172
## 280  0.33789493 0.539473684 0.0549779588 0.8060168172
## 704  0.33722935 0.540350877 0.0547359864 0.8060168172
## 1161 0.33968084 0.540350877 0.0551540593 0.8114310184
## 91   0.33901679 0.541228070 0.0549121257 0.8114310184
## 788  0.33835290 0.542105263 0.0546710682 0.8114310184
## 1105 0.33768917 0.542982456 0.0544308828 0.8114310184
## 1176 0.33702560 0.543859649 0.0541915657 0.8114310184
## 39   0.33948515 0.543859649 0.0546065755 0.8168628672
## 902  0.33882312 0.544736842 0.0543672924 0.8168628672
## 958  0.33816125 0.545614035 0.0541288717 0.8168628672
## 41   0.34062623 0.545614035 0.0545425043 0.8223123637
## 85   0.33996592 0.546491228 0.0543041168 0.8223123637
## 227  0.33930576 0.547368421 0.0540665861 0.8223123637
## 26   0.33864576 0.548245614 0.0538299082 0.8223123637
## 81   0.33798590 0.549122807 0.0535940795 0.8223123637
## 1377 0.33732619 0.550000000 0.0533590963 0.8223123637
## 719  0.33666662 0.550877193 0.0531249549 0.8223123637
## 764  0.33600719 0.551754386 0.0528916517 0.8223123637
## 1042 0.33534790 0.552631579 0.0526591829 0.8223123637
## 877  0.33468874 0.553508772 0.0524275450 0.8223123637
## 1326 0.33402972 0.554385965 0.0521967343 0.8223123637
## 1305 0.33337082 0.555263158 0.0519667473 0.8223123637
## 514  0.33271204 0.556140351 0.0517375805 0.8223123637
## 144  0.33519701 0.556140351 0.0521417183 0.8277795079
## 1175 0.33453983 0.557017544 0.0519125647 0.8277795079
## 1129 0.33388278 0.557894737 0.0516842258 0.8277795079
## 1511 0.33322584 0.558771930 0.0514566981 0.8277795079
## 581  0.33256902 0.559649123 0.0512299782 0.8277795079
## 887  0.33191231 0.560526316 0.0510040624 0.8277795079
## 1329 0.33125572 0.561403509 0.0507789474 0.8277795079
## 558  0.33059923 0.562280702 0.0505546297 0.8277795079
## 38   0.33309753 0.562280702 0.0509534823 0.8332642998
## 326  0.33244267 0.563157895 0.0507291684 0.8332642998
## 1330 0.33178791 0.564035088 0.0505056467 0.8332642998
## 1438 0.33113325 0.564912281 0.0502829138 0.8332642998
## 762  0.33047870 0.565789474 0.0500609662 0.8332642998
## 112  0.33298609 0.565789474 0.0504569721 0.8387667393
## 1116 0.33233319 0.566666667 0.0502350246 0.8387667393
## 1318 0.33168039 0.567543860 0.0500138573 0.8387667393
## 1017 0.33102768 0.568421053 0.0497934671 0.8387667393
## 328  0.33037506 0.569298246 0.0495738505 0.8387667393
## 1520 0.32972254 0.570175439 0.0493550044 0.8387667393
## 1418 0.32907010 0.571052632 0.0491369253 0.8387667393
## 534  0.32841775 0.571929825 0.0489196100 0.8387667393
## 1430 0.32776548 0.572807018 0.0487030554 0.8387667393
## 579  0.32711328 0.573684211 0.0484872582 0.8387667393
## 1422 0.32646117 0.574561404 0.0482722151 0.8387667393
## 387  0.32580912 0.575438596 0.0480579230 0.8387667393
## 1421 0.32515714 0.576315789 0.0478443786 0.8387667393
## 1104 0.32450523 0.577192982 0.0476315789 0.8387667393
## 678  0.32385338 0.578070175 0.0474195208 0.8387667393
## 1302 0.32320159 0.578947368 0.0472082009 0.8387667393
## 1273 0.32254986 0.579824561 0.0469976163 0.8387667393
## 903  0.32189818 0.580701754 0.0467877639 0.8387667393
## 377  0.32124655 0.581578947 0.0465786405 0.8387667393
## 71   0.32378590 0.581578947 0.0469611432 0.8442868265
## 1231 0.32313598 0.582456140 0.0467519943 0.8442868265
## 1229 0.32248610 0.583333333 0.0465435699 0.8442868265
## 1416 0.32183627 0.584210526 0.0463358670 0.8442868265
## 1094 0.32118649 0.585087719 0.0461288826 0.8442868265
## 459  0.32053674 0.585964912 0.0459226137 0.8442868265
## 94   0.31988704 0.586842105 0.0457170572 0.8442868265
## 1073 0.31923736 0.587719298 0.0455122103 0.8442868265
## 1283 0.31858772 0.588596491 0.0453080699 0.8442868265
## 616  0.31793810 0.589473684 0.0451046330 0.8442868265
## 181  0.32049598 0.589473684 0.0454807581 0.8498245614
## 508  0.31984812 0.590350877 0.0452772857 0.8498245614
## 92   0.31920027 0.591228070 0.0450745126 0.8498245614
## 1110 0.31855246 0.592105263 0.0448724359 0.8498245614
## 1315 0.31790466 0.592982456 0.0446710526 0.8498245614
## 975  0.31725688 0.593859649 0.0444703600 0.8498245614
## 488  0.31660911 0.594736842 0.0442703552 0.8498245614
## 49   0.31918094 0.594736842 0.0446424187 0.8553799439
## 858  0.31853496 0.595614035 0.0444423729 0.8553799439
## 224  0.31788900 0.596491228 0.0442430106 0.8553799439
## 706  0.31724304 0.597368421 0.0440443292 0.8553799439
## 842  0.31659709 0.598245614 0.0438463257 0.8553799439
## 1282 0.31595115 0.599122807 0.0436489974 0.8553799439
## 838  0.31530520 0.600000000 0.0434523415 0.8553799439
## 544  0.31789140 0.600000000 0.0438204082 0.8609529742
## 1247 0.31724728 0.600877193 0.0436237062 0.8609529742
## 1304 0.31660317 0.601754386 0.0434276726 0.8609529742
## 333  0.31595904 0.602631579 0.0432323046 0.8609529742
## 378  0.31531492 0.603508772 0.0430375995 0.8609529742
## 24   0.31467078 0.604385965 0.0428435546 0.8609529742
## 699  0.31402663 0.605263158 0.0426501672 0.8609529742
## 922  0.31338247 0.606140351 0.0424574346 0.8609529742
## 82   0.31598536 0.606140351 0.0428208622 0.8665436520
## 1237 0.31534307 0.607017544 0.0426280775 0.8665436520
## 1101 0.31470076 0.607894737 0.0424359437 0.8665436520
## 309  0.31731127 0.607894737 0.0427983020 0.8721519776
## 286  0.31667086 0.608771930 0.0426061163 0.8721519776
## 761  0.31603043 0.609649123 0.0424145777 0.8721519776
## 1133 0.31538999 0.610526316 0.0422236835 0.8721519776
## 682  0.31474952 0.611403509 0.0420334311 0.8721519776
## 84   0.31410903 0.612280702 0.0418438180 0.8721519776
## 383  0.31346851 0.613157895 0.0416548416 0.8721519776
## 1038 0.31282796 0.614035088 0.0414664992 0.8721519776
## 70   0.31545602 0.614035088 0.0418243277 0.8777779508
## 472  0.31481742 0.614912281 0.0416359278 0.8777779508
## 1272 0.31417879 0.615789474 0.0414481582 0.8777779508
## 1102 0.31354012 0.616666667 0.0412610165 0.8777779508
## 506  0.31290141 0.617543860 0.0410745001 0.8777779508
## 1512 0.31226267 0.618421053 0.0408886065 0.8777779508
## 520  0.31162388 0.619298246 0.0407033332 0.8777779508
## 920  0.31098504 0.620175439 0.0405186777 0.8777779508
## 712  0.31034615 0.621052632 0.0403346375 0.8777779508
## 271  0.30970721 0.621929825 0.0401512102 0.8777779508
## 832  0.30906821 0.622807018 0.0399683932 0.8777779508
## 1056 0.31172061 0.622807018 0.0403197423 0.8834215717
## 1413 0.31108363 0.623684211 0.0401368593 0.8834215717
## 503  0.31044659 0.624561404 0.0399545832 0.8834215717
## 1424 0.30980948 0.625438596 0.0397729116 0.8834215717
## 1134 0.30917232 0.626315789 0.0395918421 0.8834215717
## 1356 0.30853508 0.627192982 0.0394113722 0.8834215717
## 29   0.30789778 0.628070175 0.0392314996 0.8834215717
## 164  0.30726041 0.628947368 0.0390522219 0.8834215717
## 95   0.30662295 0.629824561 0.0388735367 0.8834215717
## 1417 0.30598542 0.630701754 0.0386954416 0.8834215717
## 1339 0.30534780 0.631578947 0.0385179344 0.8834215717
## 93   0.30471010 0.632456140 0.0383410127 0.8834215717
## 513  0.30407230 0.633333333 0.0381646742 0.8834215717
## 968  0.30343441 0.634210526 0.0379889165 0.8834215717
## 884  0.30279642 0.635087719 0.0378137373 0.8834215717
## 555  0.30215833 0.635964912 0.0376391344 0.8834215717
## 505  0.30152014 0.636842105 0.0374651055 0.8834215717
## 934  0.30088184 0.637719298 0.0372916484 0.8834215717
## 850  0.30024342 0.638596491 0.0371187607 0.8834215717
## 1335 0.29960489 0.639473684 0.0369464402 0.8834215717
## 213  0.29896624 0.640350877 0.0367746846 0.8834215717
## 992  0.29832747 0.641228070 0.0366034919 0.8834215717
## 1227 0.29768857 0.642105263 0.0364328597 0.8834215717
## 817  0.29704955 0.642982456 0.0362627858 0.8834215717
## 1405 0.29641039 0.643859649 0.0360932681 0.8834215717
## 732  0.29577109 0.644736842 0.0359243043 0.8834215717
## 811  0.29513165 0.645614035 0.0357558924 0.8834215717
## 583  0.29449206 0.646491228 0.0355880300 0.8834215717
## 90   0.29385233 0.647368421 0.0354207151 0.8834215717
## 51   0.29321245 0.648245614 0.0352539456 0.8834215717
## 753  0.29593303 0.648245614 0.0355866749 0.8890828402
## 1484 0.29529533 0.649122807 0.0354198147 0.8890828402
## 742  0.29465747 0.650000000 0.0352534968 0.8890828402
## 1493 0.29401946 0.650877193 0.0350877193 0.8890828402
## 1297 0.29338129 0.651754386 0.0349224799 0.8890828402
## 311  0.29611618 0.651754386 0.0352530505 0.8947617565
## 1453 0.29548024 0.652631579 0.0350877193 0.8947617565
## 157  0.29484414 0.653508772 0.0349229234 0.8947617565
## 1298 0.29420789 0.654385965 0.0347586607 0.8947617565
## 1192 0.29357147 0.655263158 0.0345949291 0.8947617565
## 959  0.29293488 0.656140351 0.0344317266 0.8947617565
## 1071 0.29229812 0.657017544 0.0342690512 0.8947617565
## 926  0.29166119 0.657894737 0.0341069007 0.8947617565
## 166  0.29102408 0.658771930 0.0339452732 0.8947617565
## 933  0.29038678 0.659649123 0.0337841666 0.8947617565
## 437  0.28974930 0.660526316 0.0336235789 0.8947617565
## 1010 0.28911162 0.661403509 0.0334635082 0.8947617565
## 1407 0.28847376 0.662280702 0.0333039524 0.8947617565
## 88   0.28783569 0.663157895 0.0331449096 0.8947617565
## 31   0.28719742 0.664035088 0.0329863777 0.8947617565
## 1515 0.28655895 0.664912281 0.0328283549 0.8947617565
## 74   0.28592026 0.665789474 0.0326708391 0.8947617565
## 1198 0.28528136 0.666666667 0.0325138284 0.8947617565
## 515  0.28464224 0.667543860 0.0323573208 0.8947617565
## 765  0.28400290 0.668421053 0.0322013146 0.8947617565
## 741  0.28336333 0.669298246 0.0320458076 0.8947617565
## 888  0.28272353 0.670175439 0.0318907981 0.8947617565
## 580  0.28208350 0.671052632 0.0317362841 0.8947617565
## 344  0.28487874 0.671052632 0.0320537168 0.9004583204
## 620  0.28424111 0.671929825 0.0318990970 0.9004583204
## 1372 0.28360324 0.672807018 0.0317449701 0.9004583204
## 1153 0.28296513 0.673684211 0.0315913343 0.9004583204
## 1131 0.28232679 0.674561404 0.0314381877 0.9004583204
## 1296 0.28168820 0.675438596 0.0312855285 0.9004583204
## 1109 0.28104936 0.676315789 0.0311333547 0.9004583204
## 1112 0.28041026 0.677192982 0.0309816646 0.9004583204
## 1241 0.27977091 0.678070175 0.0308304563 0.9004583204
## 1495 0.27913130 0.678947368 0.0306797280 0.9004583204
## 1097 0.27849142 0.679824561 0.0305294779 0.9004583204
## 316  0.28131931 0.679824561 0.0308413563 0.9061725319
## 77   0.28068194 0.680701754 0.0306909959 0.9061725319
## 961  0.28004430 0.681578947 0.0305411113 0.9061725319
## 518  0.27940639 0.682456140 0.0303917006 0.9061725319
## 1388 0.27876822 0.683333333 0.0302427620 0.9061725319
## 1075 0.27812976 0.684210526 0.0300942939 0.9061725319
## 435  0.27749103 0.685087719 0.0299462943 0.9061725319
## 1488 0.27685201 0.685964912 0.0297987616 0.9061725319
## 1487 0.27621271 0.686842105 0.0296516940 0.9061725319
## 550  0.27557310 0.687719298 0.0295050897 0.9061725319
## 59   0.27493321 0.688596491 0.0293589471 0.9061725319
## 1480 0.27429300 0.689473684 0.0292132643 0.9061725319
## 1327 0.27365249 0.690350877 0.0290680396 0.9061725319
## 1331 0.27301167 0.691228070 0.0289232714 0.9061725319
## 758  0.27588277 0.691228070 0.0292280059 0.9119043912
## 916  0.27524460 0.692105263 0.0290831217 0.9119043912
## 78   0.27460611 0.692982456 0.0289386917 0.9119043912
## 1099 0.27396732 0.693859649 0.0287947141 0.9119043912
## 900  0.27332821 0.694736842 0.0286511873 0.9119043912
## 231  0.27621760 0.694736842 0.0289540350 0.9176538981
## 1288 0.27558121 0.695614035 0.0288103918 0.9176538981
## 283  0.27494451 0.696491228 0.0286671973 0.9176538981
## 1004 0.27430749 0.697368421 0.0285244496 0.9176538981
## 602  0.27367015 0.698245614 0.0283821471 0.9176538981
## 1479 0.27303248 0.699122807 0.0282402883 0.9176538981
## 1366 0.27594382 0.699122807 0.0285407086 0.9234210526
## 918  0.27530896 0.700000000 0.0283987325 0.9234210526
## 735  0.27467379 0.700877193 0.0282571978 0.9234210526
## 36   0.27403828 0.701754386 0.0281161028 0.9234210526
## 371  0.27340245 0.702631579 0.0279754461 0.9234210526
## 1334 0.27276627 0.703508772 0.0278352259 0.9234210526
## 3    0.27212976 0.704385965 0.0276954407 0.9234210526
## 750  0.27506702 0.704385965 0.0279929114 0.9292058549
## 275  0.27443343 0.705263158 0.0278530075 0.9292058549
## 1408 0.27379950 0.706140351 0.0277135365 0.9292058549
## 330  0.27316523 0.707017544 0.0275744967 0.9292058549
## 381  0.27253062 0.707894737 0.0274358866 0.9292058549
## 585  0.27189565 0.708771930 0.0272977046 0.9292058549
## 512  0.27126033 0.709649123 0.0271599491 0.9292058549
## 454  0.27422451 0.709649123 0.0274545137 0.9350083048
## 507  0.27359223 0.710526316 0.0273166383 0.9350083048
## 1106 0.27295959 0.711403509 0.0271791875 0.9350083048
## 1026 0.27232661 0.712280702 0.0270421595 0.9350083048
## 736  0.27169326 0.713157895 0.0269055529 0.9350083048
## 1382 0.27105955 0.714035088 0.0267693662 0.9350083048
## 1411 0.27042547 0.714912281 0.0266335978 0.9350083048
## 993  0.26979102 0.715789474 0.0264982461 0.9350083048
## 75   0.26915619 0.716666667 0.0263633097 0.9350083048
## 561  0.26852098 0.717543860 0.0262287870 0.9350083048
## 1328 0.26788538 0.718421053 0.0260946766 0.9350083048
## 1090 0.26724939 0.719298246 0.0259609769 0.9350083048
## 225  0.26661300 0.720175439 0.0258276864 0.9350083048
## 1311 0.26597620 0.721052632 0.0256948037 0.9350083048
## 483  0.26533900 0.721929825 0.0255623272 0.9350083048
## 405  0.26470138 0.722807018 0.0254302556 0.9350083048
## 617  0.26406334 0.723684211 0.0252985872 0.9350083048
## 907  0.26342488 0.724561404 0.0251673208 0.9350083048
## 684  0.26278598 0.725438596 0.0250364547 0.9350083048
## 927  0.26214666 0.726315789 0.0249059876 0.9350083048
## 685  0.26150689 0.727192982 0.0247759180 0.9350083048
## 681  0.26086667 0.728070175 0.0246462445 0.9350083048
## 728  0.26022601 0.728947368 0.0245169657 0.9350083048
## 921  0.25958488 0.729824561 0.0243880801 0.9350083048
## 846  0.25894330 0.730701754 0.0242595863 0.9350083048
## 67   0.26200162 0.730701754 0.0245417703 0.9408284024
## 734  0.26136342 0.731578947 0.0244131481 0.9408284024
## 1189 0.26072476 0.732456140 0.0242849159 0.9408284024
## 357  0.26008563 0.733333333 0.0241570724 0.9408284024
## 1030 0.25944605 0.734210526 0.0240296160 0.9408284024
## 827  0.26252824 0.734210526 0.0243101277 0.9466661476
## 775  0.26189215 0.735087719 0.0241825430 0.9466661476
## 1203 0.26125560 0.735964912 0.0240553438 0.9466661476
## 1130 0.26061859 0.736842105 0.0239285286 0.9466661476
## 906  0.25998112 0.737719298 0.0238020962 0.9466661476
## 790  0.25934316 0.738596491 0.0236760452 0.9466661476
## 924  0.25870473 0.739473684 0.0235503741 0.9466661476
## 279  0.25806581 0.740350877 0.0234250817 0.9466661476
## 768  0.25742640 0.741228070 0.0233001665 0.9466661476
## 974  0.25678649 0.742105263 0.0231756273 0.9466661476
## 60   0.25614608 0.742982456 0.0230514626 0.9466661476
## 1396 0.25550516 0.743859649 0.0229276713 0.9466661476
## 1323 0.25486372 0.744736842 0.0228042519 0.9466661476
## 715  0.25422176 0.745614035 0.0226812030 0.9466661476
## 175  0.25357927 0.746491228 0.0225585235 0.9466661476
## 847  0.25293625 0.747368421 0.0224362120 0.9466661476
## 1293 0.25229269 0.748245614 0.0223142672 0.9466661476
## 281  0.25164858 0.749122807 0.0221926877 0.9466661476
## 1274 0.25100391 0.750000000 0.0220714723 0.9466661476
## 140  0.25417012 0.750000000 0.0223432837 0.9525215405
## 1310 0.25352931 0.750877193 0.0222219353 0.9525215405
## 867  0.25288796 0.751754386 0.0221009494 0.9525215405
## 1193 0.25224606 0.752631579 0.0219803248 0.9525215405
## 1002 0.25160361 0.753508772 0.0218600601 0.9525215405
## 278  0.25096059 0.754385965 0.0217401540 0.9525215405
## 1025 0.25031701 0.755263158 0.0216206054 0.9525215405
## 177  0.24967285 0.756140351 0.0215014129 0.9525215405
## 594  0.24902811 0.757017544 0.0213825753 0.9525215405
## 1385 0.24838278 0.757894737 0.0212640914 0.9525215405
## 1294 0.24773686 0.758771930 0.0211459599 0.9525215405
## 52   0.24709034 0.759649123 0.0210281795 0.9525215405
## 336  0.25031643 0.759649123 0.0212949931 0.9583945811
## 882  0.24967404 0.760526316 0.0211770779 0.9583945811
## 439  0.24903106 0.761403509 0.0210595124 0.9583945811
## 1349 0.24838749 0.762280702 0.0209422953 0.9583945811
## 436  0.24774332 0.763157895 0.0208254254 0.9583945811
## 772  0.24709854 0.764035088 0.0207089015 0.9583945811
## 414  0.25035902 0.764035088 0.0209737022 0.9642852694
## 249  0.24971856 0.764912281 0.0208570434 0.9642852694
## 1120 0.24907751 0.765789474 0.0207407292 0.9642852694
## 698  0.24843586 0.766666667 0.0206247583 0.9642852694
## 528  0.24779359 0.767543860 0.0205091296 0.9642852694
## 845  0.24715072 0.768421053 0.0203938417 0.9642852694
## 812  0.24650722 0.769298246 0.0202788937 0.9642852694
## 1463 0.24586309 0.770175439 0.0201642842 0.9642852694
## 1477 0.24521833 0.771052632 0.0200500122 0.9642852694
## 848  0.24457293 0.771929825 0.0199360764 0.9642852694
## 1412 0.24392687 0.772807018 0.0198224756 0.9642852694
## 276  0.24328015 0.773684211 0.0197092088 0.9642852694
## 10   0.24263277 0.774561404 0.0195962747 0.9642852694
## 165  0.24198472 0.775438596 0.0194836722 0.9642852694
## 185  0.24532308 0.775438596 0.0197427128 0.9701936053
## 904  0.24467974 0.776315789 0.0196299735 0.9701936053
## 881  0.24403575 0.777192982 0.0195175644 0.9701936053
## 738  0.24339110 0.778070175 0.0194054843 0.9701936053
## 1084 0.24274578 0.778947368 0.0192937323 0.9701936053
## 898  0.24209978 0.779824561 0.0191823070 0.9701936053
## 971  0.24145309 0.780701754 0.0190712074 0.9701936053
## 1435 0.24080571 0.781578947 0.0189604324 0.9701936053
## 905  0.24015763 0.782456140 0.0188499809 0.9701936053
## 1299 0.23950884 0.783333333 0.0187398517 0.9701936053
## 554  0.23885934 0.784210526 0.0186300438 0.9701936053
## 886  0.23820911 0.785087719 0.0185205560 0.9701936053
## 476  0.23755815 0.785964912 0.0184113872 0.9701936053
## 707  0.23690644 0.786842105 0.0183025364 0.9701936053
## 1053 0.23625399 0.787719298 0.0181940025 0.9701936053
## 803  0.23560078 0.788596491 0.0180857843 0.9701936053
## 1011 0.23494680 0.789473684 0.0179778809 0.9701936053
## 1201 0.23429205 0.790350877 0.0178702910 0.9701936053
## 839  0.23363652 0.791228070 0.0177630137 0.9701936053
## 1337 0.23298019 0.792105263 0.0176560479 0.9701936053
## 1181 0.23232307 0.792982456 0.0175493925 0.9701936053
## 1046 0.23166513 0.793859649 0.0174430465 0.9701936053
## 1128 0.23100638 0.794736842 0.0173370088 0.9701936053
## 794  0.23034680 0.795614035 0.0172312784 0.9701936053
## 866  0.22968638 0.796491228 0.0171258541 0.9701936053
## 1370 0.22902512 0.797368421 0.0170207351 0.9701936053
## 501  0.22836300 0.798245614 0.0169159202 0.9701936053
## 442  0.23186676 0.798245614 0.0171635096 0.9761195889
## 490  0.23121022 0.799122807 0.0170585537 0.9761195889
## 862  0.23055285 0.800000000 0.0169539009 0.9761195889
## 722  0.22989465 0.800877193 0.0168495499 0.9761195889
## 1096 0.22923559 0.801754386 0.0167454998 0.9761195889
## 1526 0.22857567 0.802631579 0.0166417497 0.9761195889
## 6    0.23212636 0.802631579 0.0168875344 0.9820632202
## 1212 0.23147234 0.803508772 0.0167836435 0.9820632202
## 1344 0.23081749 0.804385965 0.0166800514 0.9820632202
## 1454 0.23016180 0.805263158 0.0165767570 0.9820632202
## 1154 0.22950525 0.806140351 0.0164737593 0.9820632202
## 760  0.23309812 0.806140351 0.0167181963 0.9880244991
## 1332 0.23244778 0.807017544 0.0166150584 0.9880244991
## 525  0.23179662 0.807894737 0.0165122160 0.9880244991
## 80   0.23114463 0.808771930 0.0164096682 0.9880244991
## 473  0.23049180 0.809649123 0.0163074139 0.9880244991
## 179  0.22983812 0.810526316 0.0162054522 0.9880244991
## 173  0.22918358 0.811403509 0.0161037821 0.9880244991
## 1290 0.22852818 0.812280702 0.0160024025 0.9880244991
## 1048 0.22787190 0.813157895 0.0159013127 0.9880244991
## 833  0.22721473 0.814035088 0.0158005114 0.9880244991
## 380  0.22655667 0.814912281 0.0156999979 0.9880244991
## 573  0.22589770 0.815789474 0.0155997711 0.9880244991
## 1146 0.22523781 0.816666667 0.0154998301 0.9880244991
## 226  0.22457700 0.817543860 0.0154001740 0.9880244991
## 1392 0.22391525 0.818421053 0.0153008017 0.9880244991
## 935  0.22325255 0.819298246 0.0152017124 0.9880244991
## 869  0.22258889 0.820175439 0.0151029050 0.9880244991
## 990  0.22192426 0.821052632 0.0150043787 0.9880244991
## 708  0.22125865 0.821929825 0.0149061325 0.9880244991
## 596  0.22059205 0.822807018 0.0148081656 0.9880244991
## 703  0.21992445 0.823684211 0.0147104768 0.9880244991
## 1204 0.21925583 0.824561404 0.0146130655 0.9880244991
## 661  0.21858619 0.825438596 0.0145159305 0.9880244991
## 308  0.22236455 0.825438596 0.0147513769 0.9940034257
## 1336 0.22170231 0.826315789 0.0146540997 0.9940034257
## 792  0.22103908 0.827192982 0.0145570980 0.9940034257
## 1195 0.22037486 0.828070175 0.0144603707 0.9940034257
## 1460 0.21970964 0.828947368 0.0143639170 0.9940034257
## 284  0.21904340 0.829824561 0.0142677360 0.9940034257
## 1078 0.21837614 0.830701754 0.0141718267 0.9940034257
## 724  0.21770783 0.831578947 0.0140761883 0.9940034257
## 702  0.21703847 0.832456140 0.0139808199 0.9940034257
## 670  0.21636805 0.833333333 0.0138857206 0.9940034257
## 1281 0.21569655 0.834210526 0.0137908894 0.9940034257
## 667  0.21502396 0.835087719 0.0136963256 0.9940034257
## 1459 0.21435027 0.835964912 0.0136020282 0.9940034257
## 1035 0.21367547 0.836842105 0.0135079964 0.9940034257
## 531  0.21299955 0.837719298 0.0134142293 0.9940034257
## 1224 0.21232248 0.838596491 0.0133207260 0.9940034257
## 659  0.21164426 0.839473684 0.0132274856 0.9940034257
## 1005 0.21096488 0.840350877 0.0131345074 0.9940034257
## 668  0.21028432 0.841228070 0.0130417904 0.9940034257
## 564  0.20960256 0.842105263 0.0129493338 0.9940034257
## 861  0.20891960 0.842982456 0.0128571367 0.9940034257
## 559  0.20823542 0.843859649 0.0127651983 0.9940034257
## 967  0.20755000 0.844736842 0.0126735177 0.9940034257
## 176  0.20686333 0.845614035 0.0125820941 0.9940034257
## 1211 0.20617540 0.846491228 0.0124909267 0.9940034257
## 1085 0.20548619 0.847368421 0.0124000146 0.9940034257
## 899  0.20479568 0.848245614 0.0123093570 0.9940034257
## 709  0.20410387 0.849122807 0.0122189531 0.9940034257
## 282  0.20341073 0.850000000 0.0121288020 0.9940034257
## 532  0.20271625 0.850877193 0.0120389029 0.9940034257
## 639  0.20202041 0.851754386 0.0119492550 0.9940034257
## 991  0.20132320 0.852631579 0.0118598575 0.9940034257
## 1158 0.20062460 0.853508772 0.0117707096 0.9940034257
## 973  0.19992459 0.854385965 0.0116818104 0.9940034257
## 1152 0.19922316 0.855263158 0.0115931592 0.9940034257
## 1243 0.19852029 0.856140351 0.0115047551 0.9940034257
## 746  0.19781596 0.857017544 0.0114165974 0.9940034257
## 1012 0.19711016 0.857894737 0.0113286852 0.9940034257
## 1049 0.19640285 0.858771930 0.0112410178 0.9940034257
## 1280 0.19569404 0.859649123 0.0111535944 0.9940034257
## 1317 0.19498370 0.860526316 0.0110664141 0.9940034257
## 23   0.19918641 0.860526316 0.0112861697 1.0000000000
## 725  0.19848668 0.861403509 0.0111988448 1.0000000000
## 298  0.19778549 0.862280702 0.0111117623 1.0000000000
## 632  0.19708284 0.863157895 0.0110249212 1.0000000000
## 938  0.19637870 0.864035088 0.0109383210 1.0000000000
## 776  0.19567305 0.864912281 0.0108519608 1.0000000000
## 1034 0.19496588 0.865789474 0.0107658398 1.0000000000
## 1248 0.19425717 0.866666667 0.0106799573 1.0000000000
## 44   0.19354690 0.867543860 0.0105943125 1.0000000000
## 1117 0.19283505 0.868421053 0.0105089046 1.0000000000
## 779  0.19212159 0.869298246 0.0104237329 1.0000000000
## 970  0.19140651 0.870175439 0.0103387966 1.0000000000
## 1371 0.19068980 0.871052632 0.0102540950 1.0000000000
## 1409 0.18997142 0.871929825 0.0101696273 1.0000000000
## 487  0.18925135 0.872807018 0.0100853928 1.0000000000
## 1209 0.18852958 0.873684211 0.0100013907 1.0000000000
## 1157 0.18780609 0.874561404 0.0099176203 1.0000000000
## 1113 0.18708084 0.875438596 0.0098340809 1.0000000000
## 937  0.18635383 0.876315789 0.0097507716 1.0000000000
## 384  0.18562501 0.877192982 0.0096676918 1.0000000000
## 1013 0.18489438 0.878070175 0.0095848408 1.0000000000
## 814  0.18416191 0.878947368 0.0095022178 1.0000000000
## 1425 0.18342757 0.879824561 0.0094198220 1.0000000000
## 1350 0.18269133 0.880701754 0.0093376528 1.0000000000
## 743  0.18195318 0.881578947 0.0092557095 1.0000000000
## 777  0.18121309 0.882456140 0.0091739913 1.0000000000
## 1503 0.18047103 0.883333333 0.0090924975 1.0000000000
## 631  0.17972697 0.884210526 0.0090112274 1.0000000000
## 660  0.17898089 0.885087719 0.0089301803 1.0000000000
## 1286 0.17823276 0.885964912 0.0088493555 1.0000000000
## 793  0.17748255 0.886842105 0.0087687523 1.0000000000
## 98   0.17673024 0.887719298 0.0086883700 1.0000000000
## 438  0.17597578 0.888596491 0.0086082078 1.0000000000
## 994  0.17521916 0.889473684 0.0085282651 1.0000000000
## 1145 0.17446034 0.890350877 0.0084485412 1.0000000000
## 1419 0.17369930 0.891228070 0.0083690354 1.0000000000
## 1401 0.17293599 0.892105263 0.0082897471 1.0000000000
## 729  0.17217039 0.892982456 0.0082106754 1.0000000000
## 117  0.17140247 0.893859649 0.0081318198 1.0000000000
## 1528 0.17063218 0.894736842 0.0080531796 1.0000000000
## 1352 0.16985950 0.895614035 0.0079747540 1.0000000000
## 972  0.16908440 0.896491228 0.0078965425 1.0000000000
## 883  0.16830683 0.897368421 0.0078185443 1.0000000000
## 1044 0.16752675 0.898245614 0.0077407588 1.0000000000
## 526  0.16674414 0.899122807 0.0076631852 1.0000000000
## 1270 0.16595895 0.900000000 0.0075858230 1.0000000000
## 89   0.16517114 0.900877193 0.0075086715 1.0000000000
## 1082 0.16438068 0.901754386 0.0074317300 1.0000000000
## 870  0.16358752 0.902631579 0.0073549979 1.0000000000
## 562  0.16279162 0.903508772 0.0072784744 1.0000000000
## 1452 0.16199294 0.904385965 0.0072021590 1.0000000000
## 860  0.16119143 0.905263158 0.0071260510 1.0000000000
## 885  0.16038706 0.906140351 0.0070501497 1.0000000000
## 1383 0.15957976 0.907017544 0.0069744546 1.0000000000
## 1316 0.15876951 0.907894737 0.0068989649 1.0000000000
## 789  0.15795624 0.908771930 0.0068236800 1.0000000000
## 455  0.15713991 0.909649123 0.0067485993 1.0000000000
## 1051 0.15632047 0.910526316 0.0066737221 1.0000000000
## 441  0.15549787 0.911403509 0.0065990479 1.0000000000
## 723  0.15467206 0.912280702 0.0065245759 1.0000000000
## 96   0.15384297 0.913157895 0.0064503056 1.0000000000
## 428  0.15301056 0.914035088 0.0063762363 1.0000000000
## 1420 0.15217477 0.914912281 0.0063023674 1.0000000000
## 1230 0.15133554 0.915789474 0.0062286983 1.0000000000
## 463  0.15049280 0.916666667 0.0061552283 1.0000000000
## 1021 0.14964651 0.917543860 0.0060819569 1.0000000000
## 1210 0.14879659 0.918421053 0.0060088834 1.0000000000
## 1115 0.14794298 0.919298246 0.0059360072 1.0000000000
## 266  0.14708561 0.920175439 0.0058633277 1.0000000000
## 1462 0.14622441 0.921052632 0.0057908443 1.0000000000
## 563  0.14535932 0.921929825 0.0057185564 1.0000000000
## 928  0.14449026 0.922807018 0.0056464634 1.0000000000
## 329  0.14361716 0.923684211 0.0055745646 1.0000000000
## 1494 0.14273994 0.924561404 0.0055028595 1.0000000000
## 1219 0.14185852 0.925438596 0.0054313476 1.0000000000
## 705  0.14097282 0.926315789 0.0053600281 1.0000000000
## 1529 0.14008275 0.927192982 0.0052889005 1.0000000000
## 1123 0.13918823 0.928070175 0.0052179642 1.0000000000
## 810  0.13828918 0.928947368 0.0051472186 1.0000000000
## 493  0.13738549 0.929824561 0.0050766631 1.0000000000
## 530  0.13647708 0.930701754 0.0050062972 1.0000000000
## 747  0.13556384 0.931578947 0.0049361203 1.0000000000
## 816  0.13464568 0.932456140 0.0048661317 1.0000000000
## 815  0.13372249 0.933333333 0.0047963309 1.0000000000
## 120  0.13279417 0.934210526 0.0047267174 1.0000000000
## 560  0.13186060 0.935087719 0.0046572905 1.0000000000
## 1354 0.13092167 0.935964912 0.0045880498 1.0000000000
## 1240 0.12997726 0.936842105 0.0045189945 1.0000000000
## 989  0.12902724 0.937719298 0.0044501242 1.0000000000
## 215  0.12807149 0.938596491 0.0043814382 1.0000000000
## 1492 0.12710988 0.939473684 0.0043129361 1.0000000000
## 1348 0.12614227 0.940350877 0.0042446172 1.0000000000
## 391  0.12516852 0.941228070 0.0041764810 1.0000000000
## 783  0.12418848 0.942105263 0.0041085270 1.0000000000
## 597  0.12320200 0.942982456 0.0040407545 1.0000000000
## 1501 0.12220891 0.943859649 0.0039731631 1.0000000000
## 1322 0.12120906 0.944736842 0.0039057522 1.0000000000
## 936  0.12020228 0.945614035 0.0038385212 1.0000000000
## 1244 0.11918837 0.946491228 0.0037714696 1.0000000000
## 1351 0.11816717 0.947368421 0.0037045968 1.0000000000
## 1079 0.11713847 0.948245614 0.0036379023 1.0000000000
## 1527 0.11610207 0.949122807 0.0035713855 1.0000000000
## 1156 0.11505776 0.950000000 0.0035050460 1.0000000000
## 389  0.11400533 0.950877193 0.0034388832 1.0000000000
## 633  0.11294453 0.951754386 0.0033728965 1.0000000000
## 223  0.11187514 0.952631579 0.0033070854 1.0000000000
## 1242 0.11079689 0.953508772 0.0032414494 1.0000000000
## 770  0.10970952 0.954385965 0.0031759879 1.0000000000
## 1050 0.10861277 0.955263158 0.0031107004 1.0000000000
## 943  0.10750633 0.956140351 0.0030455865 1.0000000000
## 808  0.10638990 0.957017544 0.0029806455 1.0000000000
## 1387 0.10526316 0.957894737 0.0029158769 1.0000000000
## 1427 0.10412577 0.958771930 0.0028512803 1.0000000000
## 1187 0.10297738 0.959649123 0.0027868551 1.0000000000
## 872  0.10181761 0.960526316 0.0027226008 1.0000000000
## 1135 0.10064607 0.961403509 0.0026585169 1.0000000000
## 726  0.09946233 0.962280702 0.0025946028 1.0000000000
## 548  0.09826595 0.963157895 0.0025308581 1.0000000000
## 1095 0.09705646 0.964035088 0.0024672822 1.0000000000
## 809  0.09583337 0.964912281 0.0024038746 1.0000000000
## 566  0.09459613 0.965789474 0.0023406349 1.0000000000
## 769  0.09334418 0.966666667 0.0022775625 1.0000000000
## 606  0.09207693 0.967543860 0.0022146570 1.0000000000
## 1191 0.09079372 0.968421053 0.0021519178 1.0000000000
## 264  0.08949387 0.969298246 0.0020893443 1.0000000000
## 1083 0.08817664 0.970175439 0.0020269363 1.0000000000
## 1381 0.08684123 0.971052632 0.0019646930 1.0000000000
## 942  0.08548678 0.971929825 0.0019026141 1.0000000000
## 868  0.08411238 0.972807018 0.0018406991 1.0000000000
## 1393 0.08271702 0.973684211 0.0017789474 1.0000000000
## 1516 0.08129962 0.974561404 0.0017173585 1.0000000000
## 640  0.07985901 0.975438596 0.0016559321 1.0000000000
## 595  0.07839390 0.976315789 0.0015946676 1.0000000000
## 976  0.07690289 0.977192982 0.0015335645 1.0000000000
## 1076 0.07538443 0.978070175 0.0014726223 1.0000000000
## 744  0.07383682 0.978947368 0.0014118406 1.0000000000
## 1510 0.07225821 0.979824561 0.0013512188 1.0000000000
## 474  0.07064648 0.980701754 0.0012907566 1.0000000000
## 1223 0.06899934 0.981578947 0.0012304534 1.0000000000
## 1390 0.06731416 0.982456140 0.0011703088 1.0000000000
## 1093 0.06558801 0.983333333 0.0011103222 1.0000000000
## 529  0.06381757 0.984210526 0.0010504933 1.0000000000
## 106  0.06199903 0.985087719 0.0009908215 1.0000000000
## 638  0.06012802 0.985964912 0.0009313064 1.0000000000
## 578  0.05819949 0.986842105 0.0008719475 1.0000000000
## 836  0.05620750 0.987719298 0.0008127444 1.0000000000
## 47   0.05414505 0.988596491 0.0007536966 1.0000000000
## 618  0.05200374 0.989473684 0.0006948036 1.0000000000
## 917  0.04977340 0.990350877 0.0006360650 1.0000000000
## 941  0.04744146 0.991228070 0.0005774803 1.0000000000
## 727  0.04499213 0.992105263 0.0005190491 1.0000000000
## 911  0.04240505 0.992982456 0.0004607709 1.0000000000
## 844  0.03965326 0.993859649 0.0004026453 1.0000000000
## 1508 0.03669974 0.994736842 0.0003446717 1.0000000000
## 73   0.03349114 0.995614035 0.0002868499 1.0000000000
## 1410 0.02994557 0.996491228 0.0002291792 1.0000000000
## 334  0.02592513 0.997368421 0.0001716594 1.0000000000
## 285  0.02116085 0.998245614 0.0001142898 1.0000000000
## 1399 0.01495809 0.999122807 0.0000570702 1.0000000000
## 1404        NaN 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.785 0.74-0.82
## SPEC           0.658 0.63-0.68
## MCC            0.387      <NA>
## Informedness   0.443      <NA>
## PREC           0.440  0.4-0.48
## NPV            0.899 0.88-0.92
## FPR            0.342      <NA>
## F1             0.564      <NA>
## TP           306.000      <NA>
## FP           390.000      <NA>
## TN           750.000      <NA>
## FN            84.000      <NA>
## AUC-ROC        0.790 0.76-0.82
## AUC-PR         0.530      <NA>
## AUC-PRG        0.120      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.636 0.59-0.68
## SPEC           0.757 0.73-0.78
## MCC            0.361      <NA>
## Informedness   0.393      <NA>
## PREC           0.472 0.43-0.52
## NPV            0.859 0.84-0.88
## FPR            0.243      <NA>
## F1             0.542      <NA>
## TP           248.000      <NA>
## FP           277.000      <NA>
## TN           863.000      <NA>
## FN           142.000      <NA>
## AUC-ROC        0.790 0.76-0.82
## AUC-PR         0.530      <NA>
## AUC-PRG        0.120      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##           one      zero  obs  Group TP TN FP FN      SENS       SPEC
## 34 0.84778963 0.1522104  one Group1  1 28  0  8 0.1111111 1.00000000
## 37 0.84351167 0.1564883  one Group1  2 28  0  7 0.2222222 1.00000000
## 32 0.84041677 0.1595832  one Group1  3 28  0  6 0.3333333 1.00000000
## 29 0.82326467 0.1767353  one Group1  4 28  0  5 0.4444444 1.00000000
## 36 0.80946291 0.1905371  one Group1  5 28  0  4 0.5555556 1.00000000
## 35 0.79522807 0.2047719  one Group1  6 28  0  3 0.6666667 1.00000000
## 31 0.77902696 0.2209730  one Group1  7 28  0  2 0.7777778 1.00000000
## 23 0.76241133 0.2375887 zero Group1  7 27  1  2 0.7777778 0.96428571
## 27 0.56574947 0.4342505 zero Group1  7 26  2  2 0.7777778 0.92857143
## 10 0.56205825 0.4379417 zero Group1  7 25  3  2 0.7777778 0.89285714
## 22 0.55737584 0.4426242 zero Group1  7 24  4  2 0.7777778 0.85714286
## 20 0.52647070 0.4735293 zero Group1  7 23  5  2 0.7777778 0.82142857
## 28 0.51175892 0.4882411 zero Group1  7 22  6  2 0.7777778 0.78571429
## 6  0.49353987 0.5064601 zero Group1  7 21  7  2 0.7777778 0.75000000
## 24 0.45425989 0.5457401 zero Group1  7 20  8  2 0.7777778 0.71428571
## 19 0.41937689 0.5806231 zero Group1  7 19  9  2 0.7777778 0.67857143
## 21 0.41893263 0.5810674 zero Group1  7 18 10  2 0.7777778 0.64285714
## 11 0.37040955 0.6295905 zero Group1  7 17 11  2 0.7777778 0.60714286
## 1  0.36347516 0.6365248 zero Group1  7 16 12  2 0.7777778 0.57142857
## 30 0.36088691 0.6391131  one Group1  8 16 12  1 0.8888889 0.57142857
## 33 0.35571232 0.6442877  one Group1  9 16 12  0 1.0000000 0.57142857
## 5  0.35034286 0.6496571 zero Group1  9 15 13  0 1.0000000 0.53571429
## 7  0.28393389 0.7160661 zero Group1  9 14 14  0 1.0000000 0.50000000
## 13 0.27225173 0.7277483 zero Group1  9 13 15  0 1.0000000 0.46428571
## 8  0.25509657 0.7449034 zero Group1  9 12 16  0 1.0000000 0.42857143
## 17 0.21916658 0.7808334 zero Group1  9 11 17  0 1.0000000 0.39285714
## 4  0.21348458 0.7865154 zero Group1  9 10 18  0 1.0000000 0.35714286
## 25 0.18006917 0.8199308 zero Group1  9  9 19  0 1.0000000 0.32142857
## 14 0.16132853 0.8386715 zero Group1  9  8 20  0 1.0000000 0.28571429
## 3  0.14529995 0.8547001 zero Group1  9  7 21  0 1.0000000 0.25000000
## 18 0.12536828 0.8746317 zero Group1  9  6 22  0 1.0000000 0.21428571
## 16 0.08700823 0.9129918 zero Group1  9  5 23  0 1.0000000 0.17857143
## 9  0.08512134 0.9148787 zero Group1  9  4 24  0 1.0000000 0.14285714
## 15 0.04299837 0.9570016 zero Group1  9  3 25  0 1.0000000 0.10714286
## 12 0.03874283 0.9612572 zero Group1  9  2 26  0 1.0000000 0.07142857
## 26 0.03870845 0.9612916 zero Group1  9  1 27  0 1.0000000 0.03571429
## 2  0.01263302 0.9873670 zero Group1  9  0 28  0 1.0000000 0.00000000
##    Informedness      PREC       NPV      MARK        F1        MCC        FPR
## 34   0.11111111 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000
## 37   0.22222222 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000
## 32   0.33333333 1.0000000 0.8235294 0.8235294 0.5000000 0.52393683 0.00000000
## 29   0.44444444 1.0000000 0.8484848 0.8484848 0.6153846 0.61408825 0.00000000
## 36   0.55555556 1.0000000 0.8750000 0.8750000 0.7142857 0.69721669 0.00000000
## 35   0.66666667 1.0000000 0.9032258 0.9032258 0.8000000 0.77598359 0.00000000
## 31   0.77777778 1.0000000 0.9333333 0.9333333 0.8750000 0.85201287 0.00000000
## 23   0.74206349 0.8750000 0.9310345 0.8060345 0.8235294 0.77338785 0.03571429
## 27   0.70634921 0.7777778 0.9285714 0.7063492 0.7777778 0.70634921 0.07142857
## 10   0.67063492 0.7000000 0.9259259 0.6259259 0.7368421 0.64789489 0.10714286
## 22   0.63492063 0.6363636 0.9230769 0.5594406 0.7000000 0.59598688 0.14285714
## 20   0.59920635 0.5833333 0.9200000 0.5033333 0.6666667 0.54918169 0.17857143
## 28   0.56349206 0.5384615 0.9166667 0.4551282 0.6363636 0.50641992 0.21428571
## 6    0.52777778 0.5000000 0.9130435 0.4130435 0.6086957 0.46689953 0.25000000
## 24   0.49206349 0.4666667 0.9090909 0.3757576 0.5833333 0.42999603 0.28571429
## 19   0.45634921 0.4375000 0.9047619 0.3422619 0.5600000 0.39521001 0.32142857
## 21   0.42063492 0.4117647 0.9000000 0.3117647 0.5384615 0.36213136 0.35714286
## 11   0.38492063 0.3888889 0.8947368 0.2836257 0.5185185 0.33041398 0.39285714
## 1    0.34920635 0.3684211 0.8888889 0.2573099 0.5000000 0.29975701 0.42857143
## 30   0.46031746 0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143
## 33   0.57142857 0.4285714 1.0000000 0.4285714 0.6000000 0.49487166 0.42857143
## 5    0.53571429 0.4090909 1.0000000 0.4090909 0.5806452 0.46814084 0.46428571
## 7    0.50000000 0.3913043 1.0000000 0.3913043 0.5625000 0.44232587 0.50000000
## 13   0.46428571 0.3750000 1.0000000 0.3750000 0.5454545 0.41726148 0.53571429
## 8    0.42857143 0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857
## 17   0.39285714 0.3461538 1.0000000 0.3461538 0.5142857 0.36876688 0.60714286
## 4    0.35714286 0.3333333 1.0000000 0.3333333 0.5000000 0.34503278 0.64285714
## 25   0.32142857 0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143
## 14   0.28571429 0.3103448 1.0000000 0.3103448 0.4736842 0.29777500 0.71428571
## 3    0.25000000 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000
## 18   0.21428571 0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429
## 16   0.17857143 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857
## 9    0.14285714 0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286
## 15   0.10714286 0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714
## 12   0.07142857 0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143
## 26   0.03571429 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571
## 2    0.00000000 0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000
##             PG         RG
## 34 1.000000000 0.00000000
## 37 1.000000000 0.00000000
## 32 1.000000000 0.03968254
## 29 1.000000000 0.11816578
## 36 1.000000000 0.22927690
## 35 1.000000000 0.37301587
## 31 1.000000000 0.54938272
## 23 0.730468750 0.54938272
## 27 0.549382716 0.54938272
## 10 0.422500000 0.54938272
## 22 0.330578512 0.54938272
## 20 0.262152778 0.54938272
## 28 0.210059172 0.54938272
## 6  0.169642857 0.54938272
## 24 0.137777778 0.54938272
## 19 0.112304687 0.54938272
## 21 0.091695502 0.54938272
## 11 0.074845679 0.54938272
## 1  0.060941828 0.54938272
## 30 0.082857143 0.75837743
## 33 0.104956268 1.00000000
## 5  0.089654664 1.00000000
## 7  0.076559546 1.00000000
## 13 0.065290179 1.00000000
## 8  0.055542857 1.00000000
## 17 0.047073119 1.00000000
## 4  0.039682540 1.00000000
## 25 0.033208819 1.00000000
## 14 0.027518261 1.00000000
## 3  0.022500000 1.00000000
## 18 0.018061543 1.00000000
## 16 0.014125279 1.00000000
## 9  0.010625738 1.00000000
## 15 0.007507415 1.00000000
## 12 0.004723032 1.00000000
## 26 0.002232143 1.00000000
## 2  0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          1.000    0.88-1
## MCC           0.852      <NA>
## Informedness  0.778      <NA>
## PREC          1.000    0.65-1
## NPV           0.933 0.79-0.98
## FPR           0.000      <NA>
## F1            0.875      <NA>
## TP            7.000      <NA>
## FP            0.000      <NA>
## TN           28.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.900 0.76-1.04
## AUC-PR        0.760      <NA>
## AUC-PRG       0.510      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          0.786   0.6-0.9
## MCC           0.506      <NA>
## Informedness  0.563      <NA>
## PREC          0.538 0.29-0.77
## NPV           0.917 0.74-0.98
## FPR           0.214      <NA>
## F1            0.636      <NA>
## TP            7.000      <NA>
## FP            6.000      <NA>
## TN           22.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.900 0.76-1.04
## AUC-PR        0.760      <NA>
## AUC-PRG       0.510      <NA>

rf

viz_perf_f(model_m=rf_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##        one  zero  obs  Group  TP   TN   FP  FN        SENS        SPEC
## 1103 0.898 0.102 zero Group1   0 1139    1 390 0.000000000 0.999122807
## 1338 0.894 0.106  one Group1   1 1139    1 389 0.002564103 0.999122807
## 878  0.884 0.116  one Group1   2 1139    1 388 0.005128205 0.999122807
## 1270 0.858 0.142  one Group1   3 1139    1 387 0.007692308 0.999122807
## 1047 0.854 0.146  one Group1   4 1139    1 386 0.010256410 0.999122807
## 1325 0.842 0.158 zero Group1   4 1138    2 386 0.010256410 0.998245614
## 1027 0.820 0.180  one Group1   5 1138    2 385 0.012820513 0.998245614
## 122  0.810 0.190  one Group1   6 1138    2 384 0.015384615 0.998245614
## 563  0.798 0.202  one Group1   8 1138    2 382 0.020512821 0.998245614
## 1024 0.798 0.202  one Group1   8 1138    2 382 0.020512821 0.998245614
## 808  0.794 0.206  one Group1   9 1138    2 381 0.023076923 0.998245614
## 1367 0.790 0.210  one Group1  10 1138    2 380 0.025641026 0.998245614
## 936  0.782 0.218  one Group1  11 1138    2 379 0.028205128 0.998245614
## 79   0.776 0.224  one Group1  12 1138    2 378 0.030769231 0.998245614
## 883  0.768 0.232  one Group1  13 1138    2 377 0.033333333 0.998245614
## 158  0.762 0.238 zero Group1  14 1137    3 376 0.035897436 0.997368421
## 1021 0.762 0.238  one Group1  14 1137    3 376 0.035897436 0.997368421
## 129  0.756 0.244  one Group1  15 1137    3 375 0.038461538 0.997368421
## 907  0.752 0.248 zero Group1  15 1136    4 375 0.038461538 0.996491228
## 1106 0.748 0.252 zero Group1  16 1135    5 374 0.041025641 0.995614035
## 1515 0.748 0.252  one Group1  16 1135    5 374 0.041025641 0.995614035
## 1198 0.746 0.254  one Group1  17 1135    5 373 0.043589744 0.995614035
## 221  0.738 0.262  one Group1  18 1135    5 372 0.046153846 0.995614035
## 783  0.734 0.266  one Group1  19 1135    5 371 0.048717949 0.995614035
## 1507 0.728 0.272  one Group1  20 1135    5 370 0.051282051 0.995614035
## 564  0.726 0.274  one Group1  21 1135    5 369 0.053846154 0.995614035
## 81   0.724 0.276  one Group1  23 1135    5 367 0.058974359 0.995614035
## 123  0.724 0.276  one Group1  23 1135    5 367 0.058974359 0.995614035
## 441  0.722 0.278  one Group1  24 1133    7 366 0.061538462 0.993859649
## 887  0.722 0.278 zero Group1  24 1133    7 366 0.061538462 0.993859649
## 1395 0.722 0.278 zero Group1  24 1133    7 366 0.061538462 0.993859649
## 389  0.720 0.280  one Group1  26 1133    7 364 0.066666667 0.993859649
## 439  0.720 0.280  one Group1  26 1133    7 364 0.066666667 0.993859649
## 1155 0.718 0.282  one Group1  28 1133    7 362 0.071794872 0.993859649
## 1370 0.718 0.282  one Group1  28 1133    7 362 0.071794872 0.993859649
## 460  0.714 0.286  one Group1  29 1133    7 361 0.074358974 0.993859649
## 651  0.712 0.288 zero Group1  30 1132    8 360 0.076923077 0.992982456
## 786  0.712 0.288  one Group1  30 1132    8 360 0.076923077 0.992982456
## 1368 0.708 0.292  one Group1  31 1132    8 359 0.079487179 0.992982456
## 656  0.706 0.294 zero Group1  32 1131    9 358 0.082051282 0.992105263
## 1333 0.706 0.294  one Group1  32 1131    9 358 0.082051282 0.992105263
## 908  0.704 0.296  one Group1  33 1131    9 357 0.084615385 0.992105263
## 219  0.700 0.300  one Group1  34 1131    9 356 0.087179487 0.992105263
## 195  0.698 0.302  one Group1  35 1131    9 355 0.089743590 0.992105263
## 264  0.696 0.304 zero Group1  36 1130   10 354 0.092307692 0.991228070
## 1289 0.696 0.304  one Group1  36 1130   10 354 0.092307692 0.991228070
## 52   0.694 0.306 zero Group1  39 1128   12 351 0.100000000 0.989473684
## 226  0.694 0.306  one Group1  39 1128   12 351 0.100000000 0.989473684
## 468  0.694 0.306  one Group1  39 1128   12 351 0.100000000 0.989473684
## 822  0.694 0.306 zero Group1  39 1128   12 351 0.100000000 0.989473684
## 1096 0.694 0.306  one Group1  39 1128   12 351 0.100000000 0.989473684
## 1294 0.692 0.308  one Group1  41 1128   12 349 0.105128205 0.989473684
## 1436 0.692 0.308  one Group1  41 1128   12 349 0.105128205 0.989473684
## 569  0.688 0.312  one Group1  42 1126   14 348 0.107692308 0.987719298
## 900  0.688 0.312 zero Group1  42 1126   14 348 0.107692308 0.987719298
## 1420 0.688 0.312 zero Group1  42 1126   14 348 0.107692308 0.987719298
## 567  0.686 0.314  one Group1  44 1126   14 346 0.112820513 0.987719298
## 645  0.686 0.314  one Group1  44 1126   14 346 0.112820513 0.987719298
## 715  0.684 0.316  one Group1  45 1126   14 345 0.115384615 0.987719298
## 365  0.680 0.320  one Group1  48 1126   14 342 0.123076923 0.987719298
## 566  0.680 0.320  one Group1  48 1126   14 342 0.123076923 0.987719298
## 1343 0.680 0.320  one Group1  48 1126   14 342 0.123076923 0.987719298
## 538  0.678 0.322  one Group1  50 1125   15 340 0.128205128 0.986842105
## 942  0.678 0.322 zero Group1  50 1125   15 340 0.128205128 0.986842105
## 1295 0.678 0.322  one Group1  50 1125   15 340 0.128205128 0.986842105
## 409  0.676 0.324 zero Group1  51 1124   16 339 0.130769231 0.985964912
## 1448 0.676 0.324  one Group1  51 1124   16 339 0.130769231 0.985964912
## 892  0.674 0.326 zero Group1  53 1123   17 337 0.135897436 0.985087719
## 1026 0.674 0.326  one Group1  53 1123   17 337 0.135897436 0.985087719
## 1121 0.674 0.326  one Group1  53 1123   17 337 0.135897436 0.985087719
## 224  0.670 0.330  one Group1  54 1123   17 336 0.138461538 0.985087719
## 462  0.668 0.332  one Group1  56 1123   17 334 0.143589744 0.985087719
## 809  0.668 0.332  one Group1  56 1123   17 334 0.143589744 0.985087719
## 198  0.666 0.334  one Group1  59 1121   19 331 0.151282051 0.983333333
## 330  0.666 0.334 zero Group1  59 1121   19 331 0.151282051 0.983333333
## 930  0.666 0.334 zero Group1  59 1121   19 331 0.151282051 0.983333333
## 1227 0.666 0.334  one Group1  59 1121   19 331 0.151282051 0.983333333
## 1517 0.666 0.334  one Group1  59 1121   19 331 0.151282051 0.983333333
## 754  0.664 0.336 zero Group1  60 1120   20 330 0.153846154 0.982456140
## 1079 0.664 0.336  one Group1  60 1120   20 330 0.153846154 0.982456140
## 539  0.662 0.338  one Group1  61 1120   20 329 0.156410256 0.982456140
## 1224 0.660 0.340  one Group1  62 1120   20 328 0.158974359 0.982456140
## 1447 0.658 0.342  one Group1  63 1120   20 327 0.161538462 0.982456140
## 1197 0.654 0.346  one Group1  64 1120   20 326 0.164102564 0.982456140
## 1091 0.652 0.348 zero Group1  65 1119   21 325 0.166666667 0.981578947
## 1445 0.652 0.348  one Group1  65 1119   21 325 0.166666667 0.981578947
## 660  0.650 0.350 zero Group1  65 1117   23 325 0.166666667 0.979824561
## 756  0.650 0.350 zero Group1  65 1117   23 325 0.166666667 0.979824561
## 614  0.648 0.352  one Group1  67 1117   23 323 0.171794872 0.979824561
## 1008 0.648 0.352  one Group1  67 1117   23 323 0.171794872 0.979824561
## 769  0.646 0.354 zero Group1  68 1115   25 322 0.174358974 0.978070175
## 1101 0.646 0.354  one Group1  68 1115   25 322 0.174358974 0.978070175
## 1470 0.646 0.354 zero Group1  68 1115   25 322 0.174358974 0.978070175
## 1455 0.644 0.356 zero Group1  68 1114   26 322 0.174358974 0.977192982
## 1464 0.642 0.358 zero Group1  69 1113   27 321 0.176923077 0.976315789
## 1506 0.642 0.358  one Group1  69 1113   27 321 0.176923077 0.976315789
## 321  0.640 0.360  one Group1  71 1113   27 319 0.182051282 0.976315789
## 855  0.640 0.360  one Group1  71 1113   27 319 0.182051282 0.976315789
## 196  0.638 0.362  one Group1  72 1113   27 318 0.184615385 0.976315789
## 326  0.636 0.364  one Group1  73 1111   29 317 0.187179487 0.974561404
## 549  0.636 0.364 zero Group1  73 1111   29 317 0.187179487 0.974561404
## 738  0.636 0.364 zero Group1  73 1111   29 317 0.187179487 0.974561404
## 466  0.634 0.366  one Group1  74 1111   29 316 0.189743590 0.974561404
## 126  0.632 0.368  one Group1  76 1110   30 314 0.194871795 0.973684211
## 714  0.632 0.368  one Group1  76 1110   30 314 0.194871795 0.973684211
## 1489 0.632 0.368 zero Group1  76 1110   30 314 0.194871795 0.973684211
## 1138 0.626 0.374 zero Group1  76 1109   31 314 0.194871795 0.972807018
## 1051 0.624 0.376  one Group1  77 1109   31 313 0.197435897 0.972807018
## 149  0.622 0.378  one Group1  79 1108   32 311 0.202564103 0.971929825
## 309  0.622 0.378 zero Group1  79 1108   32 311 0.202564103 0.971929825
## 955  0.622 0.378  one Group1  79 1108   32 311 0.202564103 0.971929825
## 318  0.620 0.380 zero Group1  80 1106   34 310 0.205128205 0.970175439
## 410  0.620 0.380 zero Group1  80 1106   34 310 0.205128205 0.970175439
## 683  0.620 0.380  one Group1  80 1106   34 310 0.205128205 0.970175439
## 1226 0.616 0.384  one Group1  81 1105   35 309 0.207692308 0.969298246
## 1274 0.616 0.384 zero Group1  81 1105   35 309 0.207692308 0.969298246
## 906  0.614 0.386 zero Group1  81 1104   36 309 0.207692308 0.968421053
## 989  0.612 0.388 zero Group1  81 1102   38 309 0.207692308 0.966666667
## 1312 0.612 0.388 zero Group1  81 1102   38 309 0.207692308 0.966666667
## 331  0.610 0.390 zero Group1  81 1099   41 309 0.207692308 0.964035088
## 668  0.610 0.390 zero Group1  81 1099   41 309 0.207692308 0.964035088
## 960  0.610 0.390 zero Group1  81 1099   41 309 0.207692308 0.964035088
## 110  0.602 0.398 zero Group1  83 1098   42 307 0.212820513 0.963157895
## 543  0.602 0.398  one Group1  83 1098   42 307 0.212820513 0.963157895
## 606  0.602 0.398  one Group1  83 1098   42 307 0.212820513 0.963157895
## 1302 0.600 0.400  one Group1  84 1098   42 306 0.215384615 0.963157895
## 572  0.598 0.402  one Group1  85 1098   42 305 0.217948718 0.963157895
## 3    0.594 0.406 zero Group1  86 1095   45 304 0.220512821 0.960526316
## 796  0.594 0.406 zero Group1  86 1095   45 304 0.220512821 0.960526316
## 958  0.594 0.406 zero Group1  86 1095   45 304 0.220512821 0.960526316
## 1508 0.594 0.406  one Group1  86 1095   45 304 0.220512821 0.960526316
## 114  0.592 0.408 zero Group1  86 1091   49 304 0.220512821 0.957017544
## 1031 0.592 0.408 zero Group1  86 1091   49 304 0.220512821 0.957017544
## 1137 0.592 0.408 zero Group1  86 1091   49 304 0.220512821 0.957017544
## 1490 0.592 0.408 zero Group1  86 1091   49 304 0.220512821 0.957017544
## 426  0.590 0.410 zero Group1  88 1090   50 302 0.225641026 0.956140351
## 465  0.590 0.410  one Group1  88 1090   50 302 0.225641026 0.956140351
## 781  0.590 0.410  one Group1  88 1090   50 302 0.225641026 0.956140351
## 9    0.588 0.412 zero Group1  88 1088   52 302 0.225641026 0.954385965
## 927  0.588 0.412 zero Group1  88 1088   52 302 0.225641026 0.954385965
## 147  0.586 0.414  one Group1  91 1088   52 299 0.233333333 0.954385965
## 851  0.586 0.414  one Group1  91 1088   52 299 0.233333333 0.954385965
## 1228 0.586 0.414  one Group1  91 1088   52 299 0.233333333 0.954385965
## 788  0.582 0.418  one Group1  92 1088   52 298 0.235897436 0.954385965
## 1513 0.580 0.420  one Group1  93 1088   52 297 0.238461538 0.954385965
## 112  0.578 0.422 zero Group1  93 1087   53 297 0.238461538 0.953508772
## 1120 0.576 0.424  one Group1  94 1086   54 296 0.241025641 0.952631579
## 1230 0.576 0.424 zero Group1  94 1086   54 296 0.241025641 0.952631579
## 58   0.574 0.426 zero Group1  95 1085   55 295 0.243589744 0.951754386
## 322  0.574 0.426  one Group1  95 1085   55 295 0.243589744 0.951754386
## 23   0.572 0.428 zero Group1  96 1083   57 294 0.246153846 0.950000000
## 205  0.572 0.428 zero Group1  96 1083   57 294 0.246153846 0.950000000
## 1444 0.572 0.428  one Group1  96 1083   57 294 0.246153846 0.950000000
## 36   0.570 0.430 zero Group1  99 1082   58 291 0.253846154 0.949122807
## 947  0.570 0.430  one Group1  99 1082   58 291 0.253846154 0.949122807
## 1116 0.570 0.430  one Group1  99 1082   58 291 0.253846154 0.949122807
## 1433 0.570 0.430  one Group1  99 1082   58 291 0.253846154 0.949122807
## 220  0.568 0.432  one Group1 105 1082   58 285 0.269230769 0.949122807
## 395  0.568 0.432  one Group1 105 1082   58 285 0.269230769 0.949122807
## 642  0.568 0.432  one Group1 105 1082   58 285 0.269230769 0.949122807
## 856  0.568 0.432  one Group1 105 1082   58 285 0.269230769 0.949122807
## 1009 0.568 0.432  one Group1 105 1082   58 285 0.269230769 0.949122807
## 1117 0.568 0.432  one Group1 105 1082   58 285 0.269230769 0.949122807
## 63   0.566 0.434 zero Group1 107 1079   61 283 0.274358974 0.946491228
## 358  0.566 0.434 zero Group1 107 1079   61 283 0.274358974 0.946491228
## 617  0.566 0.434 zero Group1 107 1079   61 283 0.274358974 0.946491228
## 784  0.566 0.434  one Group1 107 1079   61 283 0.274358974 0.946491228
## 1372 0.566 0.434  one Group1 107 1079   61 283 0.274358974 0.946491228
## 706  0.564 0.436  one Group1 109 1079   61 281 0.279487179 0.946491228
## 717  0.564 0.436  one Group1 109 1079   61 281 0.279487179 0.946491228
## 570  0.562 0.438  one Group1 112 1078   62 278 0.287179487 0.945614035
## 725  0.562 0.438 zero Group1 112 1078   62 278 0.287179487 0.945614035
## 779  0.562 0.438  one Group1 112 1078   62 278 0.287179487 0.945614035
## 1509 0.562 0.438  one Group1 112 1078   62 278 0.287179487 0.945614035
## 121  0.560 0.440  one Group1 117 1078   62 273 0.300000000 0.945614035
## 124  0.560 0.440  one Group1 117 1078   62 273 0.300000000 0.945614035
## 299  0.560 0.440  one Group1 117 1078   62 273 0.300000000 0.945614035
## 789  0.560 0.440  one Group1 117 1078   62 273 0.300000000 0.945614035
## 1443 0.560 0.440  one Group1 117 1078   62 273 0.300000000 0.945614035
## 1081 0.558 0.442  one Group1 119 1078   62 271 0.305128205 0.945614035
## 1511 0.558 0.442  one Group1 119 1078   62 271 0.305128205 0.945614035
## 1321 0.556 0.444 zero Group1 119 1077   63 271 0.305128205 0.944736842
## 102  0.554 0.446 zero Group1 119 1076   64 271 0.305128205 0.943859649
## 215  0.552 0.448 zero Group1 119 1075   65 271 0.305128205 0.942982456
## 727  0.550 0.450 zero Group1 119 1073   67 271 0.305128205 0.941228070
## 1107 0.550 0.450 zero Group1 119 1073   67 271 0.305128205 0.941228070
## 94   0.548 0.452 zero Group1 120 1071   69 270 0.307692308 0.939473684
## 464  0.548 0.452  one Group1 120 1071   69 270 0.307692308 0.939473684
## 1259 0.548 0.452 zero Group1 120 1071   69 270 0.307692308 0.939473684
## 411  0.546 0.454 zero Group1 122 1070   70 268 0.312820513 0.938596491
## 470  0.546 0.454  one Group1 122 1070   70 268 0.312820513 0.938596491
## 1094 0.546 0.454  one Group1 122 1070   70 268 0.312820513 0.938596491
## 945  0.544 0.456  one Group1 123 1070   70 267 0.315384615 0.938596491
## 500  0.542 0.458 zero Group1 123 1068   72 267 0.315384615 0.936842105
## 1381 0.542 0.458 zero Group1 123 1068   72 267 0.315384615 0.936842105
## 209  0.540 0.460 zero Group1 124 1067   73 266 0.317948718 0.935964912
## 1223 0.540 0.460  one Group1 124 1067   73 266 0.317948718 0.935964912
## 95   0.538 0.462 zero Group1 125 1065   75 265 0.320512821 0.934210526
## 308  0.538 0.462 zero Group1 125 1065   75 265 0.320512821 0.934210526
## 925  0.538 0.462  one Group1 125 1065   75 265 0.320512821 0.934210526
## 674  0.536 0.464 zero Group1 126 1061   79 264 0.323076923 0.930701754
## 744  0.536 0.464 zero Group1 126 1061   79 264 0.323076923 0.930701754
## 990  0.536 0.464 zero Group1 126 1061   79 264 0.323076923 0.930701754
## 1262 0.536 0.464 zero Group1 126 1061   79 264 0.323076923 0.930701754
## 1514 0.536 0.464  one Group1 126 1061   79 264 0.323076923 0.930701754
## 705  0.532 0.468  one Group1 127 1061   79 263 0.325641026 0.930701754
## 687  0.530 0.470 zero Group1 131 1060   80 259 0.335897436 0.929824561
## 877  0.530 0.470  one Group1 131 1060   80 259 0.335897436 0.929824561
## 1006 0.530 0.470  one Group1 131 1060   80 259 0.335897436 0.929824561
## 1082 0.530 0.470  one Group1 131 1060   80 259 0.335897436 0.929824561
## 1292 0.530 0.470  one Group1 131 1060   80 259 0.335897436 0.929824561
## 622  0.528 0.472 zero Group1 133 1058   82 257 0.341025641 0.928070175
## 839  0.528 0.472 zero Group1 133 1058   82 257 0.341025641 0.928070175
## 879  0.528 0.472  one Group1 133 1058   82 257 0.341025641 0.928070175
## 1341 0.528 0.472  one Group1 133 1058   82 257 0.341025641 0.928070175
## 85   0.526 0.474 zero Group1 135 1055   85 255 0.346153846 0.925438596
## 294  0.526 0.474  one Group1 135 1055   85 255 0.346153846 0.925438596
## 816  0.526 0.474 zero Group1 135 1055   85 255 0.346153846 0.925438596
## 1388 0.526 0.474 zero Group1 135 1055   85 255 0.346153846 0.925438596
## 1407 0.526 0.474  one Group1 135 1055   85 255 0.346153846 0.925438596
## 100  0.524 0.476 zero Group1 136 1053   87 254 0.348717949 0.923684211
## 518  0.524 0.476 zero Group1 136 1053   87 254 0.348717949 0.923684211
## 946  0.524 0.476  one Group1 136 1053   87 254 0.348717949 0.923684211
## 157  0.522 0.478 zero Group1 137 1052   88 253 0.351282051 0.922807018
## 197  0.522 0.478  one Group1 137 1052   88 253 0.351282051 0.922807018
## 952  0.520 0.480  one Group1 138 1051   89 252 0.353846154 0.921929825
## 994  0.520 0.480 zero Group1 138 1051   89 252 0.353846154 0.921929825
## 324  0.518 0.482  one Group1 140 1048   92 250 0.358974359 0.919298246
## 521  0.518 0.482 zero Group1 140 1048   92 250 0.358974359 0.919298246
## 541  0.518 0.482  one Group1 140 1048   92 250 0.358974359 0.919298246
## 594  0.518 0.482 zero Group1 140 1048   92 250 0.358974359 0.919298246
## 760  0.518 0.482 zero Group1 140 1048   92 250 0.358974359 0.919298246
## 291  0.516 0.484  one Group1 141 1048   92 249 0.361538462 0.919298246
## 404  0.514 0.486 zero Group1 142 1045   95 248 0.364102564 0.916666667
## 427  0.514 0.486 zero Group1 142 1045   95 248 0.364102564 0.916666667
## 899  0.514 0.486 zero Group1 142 1045   95 248 0.364102564 0.916666667
## 1362 0.514 0.486  one Group1 142 1045   95 248 0.364102564 0.916666667
## 897  0.512 0.488 zero Group1 143 1044   96 247 0.366666667 0.915789474
## 1342 0.512 0.488  one Group1 143 1044   96 247 0.366666667 0.915789474
## 13   0.510 0.490 zero Group1 144 1043   97 246 0.369230769 0.914912281
## 607  0.510 0.490  one Group1 144 1043   97 246 0.369230769 0.914912281
## 1007 0.508 0.492  one Group1 145 1043   97 245 0.371794872 0.914912281
## 588  0.506 0.494 zero Group1 146 1040  100 244 0.374358974 0.912280702
## 967  0.506 0.494 zero Group1 146 1040  100 244 0.374358974 0.912280702
## 1250 0.506 0.494 zero Group1 146 1040  100 244 0.374358974 0.912280702
## 1439 0.506 0.494  one Group1 146 1040  100 244 0.374358974 0.912280702
## 720  0.504 0.496 zero Group1 147 1039  101 243 0.376923077 0.911403509
## 859  0.504 0.496  one Group1 147 1039  101 243 0.376923077 0.911403509
## 360  0.502 0.498  one Group1 148 1038  102 242 0.379487179 0.910526316
## 719  0.502 0.498 zero Group1 148 1038  102 242 0.379487179 0.910526316
## 213  0.500 0.500 zero Group1 151 1035  105 239 0.387179487 0.907894737
## 296  0.500 0.500  one Group1 151 1035  105 239 0.387179487 0.907894737
## 304  0.500 0.500 zero Group1 151 1035  105 239 0.387179487 0.907894737
## 482  0.500 0.500 zero Group1 151 1035  105 239 0.387179487 0.907894737
## 932  0.500 0.500  one Group1 151 1035  105 239 0.387179487 0.907894737
## 1025 0.500 0.500  one Group1 151 1035  105 239 0.387179487 0.907894737
## 675  0.498 0.502 zero Group1 152 1032  108 238 0.389743590 0.905263158
## 753  0.498 0.502 zero Group1 152 1032  108 238 0.389743590 0.905263158
## 1010 0.498 0.502  one Group1 152 1032  108 238 0.389743590 0.905263158
## 1033 0.498 0.502 zero Group1 152 1032  108 238 0.389743590 0.905263158
## 127  0.496 0.504  one Group1 154 1030  110 236 0.394871795 0.903508772
## 644  0.496 0.504  one Group1 154 1030  110 236 0.394871795 0.903508772
## 929  0.496 0.504 zero Group1 154 1030  110 236 0.394871795 0.903508772
## 1221 0.496 0.504 zero Group1 154 1030  110 236 0.394871795 0.903508772
## 486  0.494 0.506 zero Group1 158 1027  113 232 0.405128205 0.900877193
## 634  0.494 0.506  one Group1 158 1027  113 232 0.405128205 0.900877193
## 681  0.494 0.506  one Group1 158 1027  113 232 0.405128205 0.900877193
## 815  0.494 0.506 zero Group1 158 1027  113 232 0.405128205 0.900877193
## 1052 0.494 0.506  one Group1 158 1027  113 232 0.405128205 0.900877193
## 1248 0.494 0.506 zero Group1 158 1027  113 232 0.405128205 0.900877193
## 1409 0.494 0.506  one Group1 158 1027  113 232 0.405128205 0.900877193
## 950  0.492 0.508  one Group1 159 1027  113 231 0.407692308 0.900877193
## 1438 0.490 0.510  one Group1 161 1027  113 229 0.412820513 0.900877193
## 1441 0.490 0.510  one Group1 161 1027  113 229 0.412820513 0.900877193
## 787  0.488 0.512 zero Group1 161 1024  116 229 0.412820513 0.898245614
## 1004 0.488 0.512 zero Group1 161 1024  116 229 0.412820513 0.898245614
## 1380 0.488 0.512 zero Group1 161 1024  116 229 0.412820513 0.898245614
## 1437 0.486 0.514  one Group1 162 1024  116 228 0.415384615 0.898245614
## 403  0.482 0.518 zero Group1 162 1021  119 228 0.415384615 0.895614035
## 596  0.482 0.518 zero Group1 162 1021  119 228 0.415384615 0.895614035
## 1055 0.482 0.518 zero Group1 162 1021  119 228 0.415384615 0.895614035
## 782  0.480 0.520  one Group1 163 1021  119 227 0.417948718 0.895614035
## 475  0.476 0.524 zero Group1 163 1018  122 227 0.417948718 0.892982456
## 1282 0.476 0.524 zero Group1 163 1018  122 227 0.417948718 0.892982456
## 1315 0.476 0.524 zero Group1 163 1018  122 227 0.417948718 0.892982456
## 43   0.474 0.526 zero Group1 164 1016  124 226 0.420512821 0.891228070
## 111  0.474 0.526 zero Group1 164 1016  124 226 0.420512821 0.891228070
## 1505 0.474 0.526  one Group1 164 1016  124 226 0.420512821 0.891228070
## 392  0.472 0.528  one Group1 168 1014  126 222 0.430769231 0.889473684
## 643  0.472 0.528  one Group1 168 1014  126 222 0.430769231 0.889473684
## 852  0.472 0.528  one Group1 168 1014  126 222 0.430769231 0.889473684
## 1085 0.472 0.528 zero Group1 168 1014  126 222 0.430769231 0.889473684
## 1173 0.472 0.528 zero Group1 168 1014  126 222 0.430769231 0.889473684
## 1518 0.472 0.528  one Group1 168 1014  126 222 0.430769231 0.889473684
## 440  0.470 0.530  one Group1 173 1012  128 217 0.443589744 0.887719298
## 459  0.470 0.530  one Group1 173 1012  128 217 0.443589744 0.887719298
## 557  0.470 0.530 zero Group1 173 1012  128 217 0.443589744 0.887719298
## 630  0.470 0.530  one Group1 173 1012  128 217 0.443589744 0.887719298
## 1019 0.470 0.530  one Group1 173 1012  128 217 0.443589744 0.887719298
## 1432 0.470 0.530  one Group1 173 1012  128 217 0.443589744 0.887719298
## 1491 0.470 0.530 zero Group1 173 1012  128 217 0.443589744 0.887719298
## 421  0.468 0.532 zero Group1 173 1009  131 217 0.443589744 0.885087719
## 1032 0.468 0.532 zero Group1 173 1009  131 217 0.443589744 0.885087719
## 1487 0.468 0.532 zero Group1 173 1009  131 217 0.443589744 0.885087719
## 293  0.466 0.534  one Group1 175 1008  132 215 0.448717949 0.884210526
## 1104 0.466 0.534 zero Group1 175 1008  132 215 0.448717949 0.884210526
## 1375 0.466 0.534  one Group1 175 1008  132 215 0.448717949 0.884210526
## 191  0.464 0.536  one Group1 176 1006  134 214 0.451282051 0.882456140
## 737  0.464 0.536 zero Group1 176 1006  134 214 0.451282051 0.882456140
## 1452 0.464 0.536 zero Group1 176 1006  134 214 0.451282051 0.882456140
## 278  0.462 0.538 zero Group1 178 1004  136 212 0.456410256 0.880701754
## 361  0.462 0.538  one Group1 178 1004  136 212 0.456410256 0.880701754
## 587  0.462 0.538 zero Group1 178 1004  136 212 0.456410256 0.880701754
## 858  0.462 0.538  one Group1 178 1004  136 212 0.456410256 0.880701754
## 20   0.460 0.540 zero Group1 178 1002  138 212 0.456410256 0.878947368
## 57   0.460 0.540 zero Group1 178 1002  138 212 0.456410256 0.878947368
## 1297 0.458 0.542  one Group1 179 1002  138 211 0.458974359 0.878947368
## 249  0.456 0.544 zero Group1 180  997  143 210 0.461538462 0.874561404
## 306  0.456 0.544 zero Group1 180  997  143 210 0.461538462 0.874561404
## 362  0.456 0.544  one Group1 180  997  143 210 0.461538462 0.874561404
## 487  0.456 0.544 zero Group1 180  997  143 210 0.461538462 0.874561404
## 525  0.456 0.544 zero Group1 180  997  143 210 0.461538462 0.874561404
## 591  0.456 0.544 zero Group1 180  997  143 210 0.461538462 0.874561404
## 937  0.454 0.546  one Group1 182  995  145 208 0.466666667 0.872807018
## 1058 0.454 0.546 zero Group1 182  995  145 208 0.466666667 0.872807018
## 1413 0.454 0.546 zero Group1 182  995  145 208 0.466666667 0.872807018
## 1516 0.454 0.546  one Group1 182  995  145 208 0.466666667 0.872807018
## 1267 0.450 0.550  one Group1 183  995  145 207 0.469230769 0.872807018
## 369  0.448 0.552  one Group1 184  991  149 206 0.471794872 0.869298246
## 961  0.448 0.552 zero Group1 184  991  149 206 0.471794872 0.869298246
## 976  0.448 0.552 zero Group1 184  991  149 206 0.471794872 0.869298246
## 1177 0.448 0.552 zero Group1 184  991  149 206 0.471794872 0.869298246
## 1310 0.448 0.552 zero Group1 184  991  149 206 0.471794872 0.869298246
## 72   0.446 0.554 zero Group1 186  989  151 204 0.476923077 0.867543860
## 638  0.446 0.554  one Group1 186  989  151 204 0.476923077 0.867543860
## 1042 0.446 0.554 zero Group1 186  989  151 204 0.476923077 0.867543860
## 1152 0.446 0.554  one Group1 186  989  151 204 0.476923077 0.867543860
## 281  0.444 0.556 zero Group1 187  988  152 203 0.479487179 0.866666667
## 461  0.444 0.556  one Group1 187  988  152 203 0.479487179 0.866666667
## 423  0.442 0.558  one Group1 188  986  154 202 0.482051282 0.864912281
## 1043 0.442 0.558 zero Group1 188  986  154 202 0.482051282 0.864912281
## 1522 0.442 0.558 zero Group1 188  986  154 202 0.482051282 0.864912281
## 663  0.440 0.560 zero Group1 188  985  155 202 0.482051282 0.864035088
## 203  0.438 0.562 zero Group1 188  984  156 202 0.482051282 0.863157895
## 60   0.436 0.564 zero Group1 190  979  161 200 0.487179487 0.858771930
## 354  0.436 0.564 zero Group1 190  979  161 200 0.487179487 0.858771930
## 498  0.436 0.564  one Group1 190  979  161 200 0.487179487 0.858771930
## 631  0.436 0.564  one Group1 190  979  161 200 0.487179487 0.858771930
## 733  0.436 0.564 zero Group1 190  979  161 200 0.487179487 0.858771930
## 895  0.436 0.564 zero Group1 190  979  161 200 0.487179487 0.858771930
## 979  0.436 0.564 zero Group1 190  979  161 200 0.487179487 0.858771930
## 206  0.432 0.568 zero Group1 190  976  164 200 0.487179487 0.856140351
## 399  0.432 0.568 zero Group1 190  976  164 200 0.487179487 0.856140351
## 1486 0.432 0.568 zero Group1 190  976  164 200 0.487179487 0.856140351
## 363  0.430 0.570  one Group1 192  974  166 198 0.492307692 0.854385965
## 520  0.430 0.570  one Group1 192  974  166 198 0.492307692 0.854385965
## 1072 0.430 0.570 zero Group1 192  974  166 198 0.492307692 0.854385965
## 1450 0.430 0.570 zero Group1 192  974  166 198 0.492307692 0.854385965
## 136  0.428 0.572 zero Group1 193  971  169 197 0.494871795 0.851754386
## 707  0.428 0.572  one Group1 193  971  169 197 0.494871795 0.851754386
## 814  0.428 0.572 zero Group1 193  971  169 197 0.494871795 0.851754386
## 1243 0.428 0.572 zero Group1 193  971  169 197 0.494871795 0.851754386
## 780  0.426 0.574  one Group1 194  969  171 196 0.497435897 0.850000000
## 1306 0.426 0.574 zero Group1 194  969  171 196 0.497435897 0.850000000
## 1526 0.426 0.574 zero Group1 194  969  171 196 0.497435897 0.850000000
## 806  0.424 0.576  one Group1 199  967  173 191 0.510256410 0.848245614
## 863  0.424 0.576  one Group1 199  967  173 191 0.510256410 0.848245614
## 894  0.424 0.576 zero Group1 199  967  173 191 0.510256410 0.848245614
## 1100 0.424 0.576  one Group1 199  967  173 191 0.510256410 0.848245614
## 1196 0.424 0.576  one Group1 199  967  173 191 0.510256410 0.848245614
## 1319 0.424 0.576 zero Group1 199  967  173 191 0.510256410 0.848245614
## 1519 0.424 0.576  one Group1 199  967  173 191 0.510256410 0.848245614
## 218  0.422 0.578  one Group1 202  966  174 188 0.517948718 0.847368421
## 334  0.422 0.578 zero Group1 202  966  174 188 0.517948718 0.847368421
## 335  0.422 0.578  one Group1 202  966  174 188 0.517948718 0.847368421
## 609  0.422 0.578  one Group1 202  966  174 188 0.517948718 0.847368421
## 275  0.420 0.580 zero Group1 203  963  177 187 0.520512821 0.844736842
## 348  0.420 0.580 zero Group1 203  963  177 187 0.520512821 0.844736842
## 747  0.420 0.580 zero Group1 203  963  177 187 0.520512821 0.844736842
## 790  0.420 0.580  one Group1 203  963  177 187 0.520512821 0.844736842
## 159  0.416 0.584 zero Group1 204  957  183 186 0.523076923 0.839473684
## 166  0.416 0.584 zero Group1 204  957  183 186 0.523076923 0.839473684
## 799  0.416 0.584 zero Group1 204  957  183 186 0.523076923 0.839473684
## 830  0.416 0.584 zero Group1 204  957  183 186 0.523076923 0.839473684
## 889  0.416 0.584 zero Group1 204  957  183 186 0.523076923 0.839473684
## 1299 0.416 0.584  one Group1 204  957  183 186 0.523076923 0.839473684
## 1469 0.416 0.584 zero Group1 204  957  183 186 0.523076923 0.839473684
## 636  0.414 0.586  one Group1 206  955  185 184 0.528205128 0.837719298
## 669  0.414 0.586 zero Group1 206  955  185 184 0.528205128 0.837719298
## 1124 0.414 0.586  one Group1 206  955  185 184 0.528205128 0.837719298
## 1232 0.414 0.586 zero Group1 206  955  185 184 0.528205128 0.837719298
## 716  0.412 0.588  one Group1 208  954  186 182 0.533333333 0.836842105
## 1017 0.412 0.588  one Group1 208  954  186 182 0.533333333 0.836842105
## 1415 0.412 0.588 zero Group1 208  954  186 182 0.533333333 0.836842105
## 939  0.410 0.590 zero Group1 208  951  189 182 0.533333333 0.834210526
## 987  0.410 0.590 zero Group1 208  951  189 182 0.533333333 0.834210526
## 1376 0.410 0.590 zero Group1 208  951  189 182 0.533333333 0.834210526
## 117  0.408 0.592 zero Group1 209  949  191 181 0.535897436 0.832456140
## 292  0.408 0.592  one Group1 209  949  191 181 0.535897436 0.832456140
## 479  0.408 0.592 zero Group1 209  949  191 181 0.535897436 0.832456140
## 50   0.406 0.594 zero Group1 209  946  194 181 0.535897436 0.829824561
## 62   0.406 0.594 zero Group1 209  946  194 181 0.535897436 0.829824561
## 1474 0.406 0.594 zero Group1 209  946  194 181 0.535897436 0.829824561
## 551  0.404 0.596 zero Group1 209  945  195 181 0.535897436 0.828947368
## 742  0.402 0.598 zero Group1 210  944  196 180 0.538461538 0.828070175
## 1521 0.402 0.598  one Group1 210  944  196 180 0.538461538 0.828070175
## 613  0.400 0.600  one Group1 212  943  197 178 0.543589744 0.827192982
## 865  0.400 0.600 zero Group1 212  943  197 178 0.543589744 0.827192982
## 1020 0.400 0.600  one Group1 212  943  197 178 0.543589744 0.827192982
## 307  0.398 0.602 zero Group1 215  939  201 175 0.551282051 0.823684211
## 323  0.398 0.602  one Group1 215  939  201 175 0.551282051 0.823684211
## 367  0.398 0.602  one Group1 215  939  201 175 0.551282051 0.823684211
## 504  0.398 0.602 zero Group1 215  939  201 175 0.551282051 0.823684211
## 573  0.398 0.602 zero Group1 215  939  201 175 0.551282051 0.823684211
## 709  0.398 0.602  one Group1 215  939  201 175 0.551282051 0.823684211
## 1398 0.398 0.602 zero Group1 215  939  201 175 0.551282051 0.823684211
## 391  0.396 0.604  one Group1 218  937  203 172 0.558974359 0.821929825
## 405  0.396 0.604 zero Group1 218  937  203 172 0.558974359 0.821929825
## 608  0.396 0.604  one Group1 218  937  203 172 0.558974359 0.821929825
## 785  0.396 0.604  one Group1 218  937  203 172 0.558974359 0.821929825
## 1093 0.396 0.604 zero Group1 218  937  203 172 0.558974359 0.821929825
## 230  0.394 0.606 zero Group1 220  933  207 170 0.564102564 0.818421053
## 236  0.394 0.606 zero Group1 220  933  207 170 0.564102564 0.818421053
## 298  0.394 0.606  one Group1 220  933  207 170 0.564102564 0.818421053
## 374  0.394 0.606 zero Group1 220  933  207 170 0.564102564 0.818421053
## 874  0.394 0.606  one Group1 220  933  207 170 0.564102564 0.818421053
## 1084 0.394 0.606 zero Group1 220  933  207 170 0.564102564 0.818421053
## 619  0.392 0.608 zero Group1 222  930  210 168 0.569230769 0.815789474
## 954  0.392 0.608  one Group1 222  930  210 168 0.569230769 0.815789474
## 964  0.392 0.608 zero Group1 222  930  210 168 0.569230769 0.815789474
## 1301 0.392 0.608  one Group1 222  930  210 168 0.569230769 0.815789474
## 1498 0.392 0.608 zero Group1 222  930  210 168 0.569230769 0.815789474
## 151  0.390 0.610  one Group1 223  929  211 167 0.571794872 0.814912281
## 344  0.390 0.610 zero Group1 223  929  211 167 0.571794872 0.814912281
## 22   0.388 0.612 zero Group1 224  924  216 166 0.574358974 0.810526316
## 223  0.388 0.612  one Group1 224  924  216 166 0.574358974 0.810526316
## 599  0.388 0.612 zero Group1 224  924  216 166 0.574358974 0.810526316
## 688  0.388 0.612 zero Group1 224  924  216 166 0.574358974 0.810526316
## 741  0.388 0.612 zero Group1 224  924  216 166 0.574358974 0.810526316
## 1473 0.388 0.612 zero Group1 224  924  216 166 0.574358974 0.810526316
## 153  0.386 0.614  one Group1 227  921  219 163 0.582051282 0.807894737
## 225  0.386 0.614  one Group1 227  921  219 163 0.582051282 0.807894737
## 442  0.386 0.614 zero Group1 227  921  219 163 0.582051282 0.807894737
## 657  0.386 0.614 zero Group1 227  921  219 163 0.582051282 0.807894737
## 882  0.386 0.614  one Group1 227  921  219 163 0.582051282 0.807894737
## 1472 0.386 0.614 zero Group1 227  921  219 163 0.582051282 0.807894737
## 61   0.384 0.616 zero Group1 228  915  225 162 0.584615385 0.802631579
## 130  0.384 0.616 zero Group1 228  915  225 162 0.584615385 0.802631579
## 277  0.384 0.616 zero Group1 228  915  225 162 0.584615385 0.802631579
## 761  0.384 0.616 zero Group1 228  915  225 162 0.584615385 0.802631579
## 791  0.384 0.616 zero Group1 228  915  225 162 0.584615385 0.802631579
## 1023 0.384 0.616  one Group1 228  915  225 162 0.584615385 0.802631579
## 1322 0.384 0.616 zero Group1 228  915  225 162 0.584615385 0.802631579
## 46   0.382 0.618 zero Group1 230  913  227 160 0.589743590 0.800877193
## 125  0.382 0.618  one Group1 230  913  227 160 0.589743590 0.800877193
## 1318 0.382 0.618 zero Group1 230  913  227 160 0.589743590 0.800877193
## 1408 0.382 0.618  one Group1 230  913  227 160 0.589743590 0.800877193
## 90   0.380 0.620 zero Group1 233  907  233 157 0.597435897 0.795614035
## 106  0.380 0.620 zero Group1 233  907  233 157 0.597435897 0.795614035
## 222  0.380 0.620  one Group1 233  907  233 157 0.597435897 0.795614035
## 690  0.380 0.620 zero Group1 233  907  233 157 0.597435897 0.795614035
## 842  0.380 0.620 zero Group1 233  907  233 157 0.597435897 0.795614035
## 853  0.380 0.620  one Group1 233  907  233 157 0.597435897 0.795614035
## 981  0.380 0.620  one Group1 233  907  233 157 0.597435897 0.795614035
## 983  0.380 0.620 zero Group1 233  907  233 157 0.597435897 0.795614035
## 1466 0.380 0.620 zero Group1 233  907  233 157 0.597435897 0.795614035
## 559  0.378 0.622 zero Group1 234  904  236 156 0.600000000 0.792982456
## 1065 0.378 0.622 zero Group1 234  904  236 156 0.600000000 0.792982456
## 1078 0.378 0.622  one Group1 234  904  236 156 0.600000000 0.792982456
## 1309 0.378 0.622 zero Group1 234  904  236 156 0.600000000 0.792982456
## 255  0.376 0.624 zero Group1 235  902  238 155 0.602564103 0.791228070
## 1264 0.376 0.624  one Group1 235  902  238 155 0.602564103 0.791228070
## 1461 0.376 0.624 zero Group1 235  902  238 155 0.602564103 0.791228070
## 247  0.374 0.626 zero Group1 236  898  242 154 0.605128205 0.787719298
## 248  0.374 0.626 zero Group1 236  898  242 154 0.605128205 0.787719298
## 728  0.374 0.626 zero Group1 236  898  242 154 0.605128205 0.787719298
## 869  0.374 0.626 zero Group1 236  898  242 154 0.605128205 0.787719298
## 1050 0.374 0.626  one Group1 236  898  242 154 0.605128205 0.787719298
## 233  0.372 0.628 zero Group1 236  893  247 154 0.605128205 0.783333333
## 400  0.372 0.628 zero Group1 236  893  247 154 0.605128205 0.783333333
## 576  0.372 0.628 zero Group1 236  893  247 154 0.605128205 0.783333333
## 826  0.372 0.628 zero Group1 236  893  247 154 0.605128205 0.783333333
## 1000 0.372 0.628 zero Group1 236  893  247 154 0.605128205 0.783333333
## 103  0.370 0.630 zero Group1 237  888  252 153 0.607692308 0.778947368
## 156  0.370 0.630 zero Group1 237  888  252 153 0.607692308 0.778947368
## 201  0.370 0.630 zero Group1 237  888  252 153 0.607692308 0.778947368
## 332  0.370 0.630 zero Group1 237  888  252 153 0.607692308 0.778947368
## 1097 0.370 0.630  one Group1 237  888  252 153 0.607692308 0.778947368
## 1174 0.370 0.630 zero Group1 237  888  252 153 0.607692308 0.778947368
## 708  0.368 0.632  one Group1 238  883  257 152 0.610256410 0.774561404
## 957  0.368 0.632 zero Group1 238  883  257 152 0.610256410 0.774561404
## 1128 0.368 0.632 zero Group1 238  883  257 152 0.610256410 0.774561404
## 1214 0.368 0.632 zero Group1 238  883  257 152 0.610256410 0.774561404
## 1254 0.368 0.632 zero Group1 238  883  257 152 0.610256410 0.774561404
## 1477 0.368 0.632 zero Group1 238  883  257 152 0.610256410 0.774561404
## 200  0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 229  0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 272  0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 314  0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 349  0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 446  0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 612  0.366 0.634  one Group1 240  875  265 150 0.615384615 0.767543860
## 933  0.366 0.634  one Group1 240  875  265 150 0.615384615 0.767543860
## 1073 0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 1211 0.366 0.634 zero Group1 240  875  265 150 0.615384615 0.767543860
## 17   0.364 0.636 zero Group1 241  870  270 149 0.617948718 0.763157895
## 795  0.364 0.636 zero Group1 241  870  270 149 0.617948718 0.763157895
## 931  0.364 0.636 zero Group1 241  870  270 149 0.617948718 0.763157895
## 1156 0.364 0.636  one Group1 241  870  270 149 0.617948718 0.763157895
## 1168 0.364 0.636 zero Group1 241  870  270 149 0.617948718 0.763157895
## 1527 0.364 0.636 zero Group1 241  870  270 149 0.617948718 0.763157895
## 632  0.362 0.638  one Group1 244  868  272 146 0.625641026 0.761403509
## 951  0.362 0.638  one Group1 244  868  272 146 0.625641026 0.761403509
## 993  0.362 0.638 zero Group1 244  868  272 146 0.625641026 0.761403509
## 1105 0.362 0.638 zero Group1 244  868  272 146 0.625641026 0.761403509
## 1291 0.362 0.638  one Group1 244  868  272 146 0.625641026 0.761403509
## 438  0.360 0.640  one Group1 248  867  273 142 0.635897436 0.760526316
## 565  0.360 0.640  one Group1 248  867  273 142 0.635897436 0.760526316
## 711  0.360 0.640  one Group1 248  867  273 142 0.635897436 0.760526316
## 1212 0.360 0.640 zero Group1 248  867  273 142 0.635897436 0.760526316
## 1337 0.360 0.640  one Group1 248  867  273 142 0.635897436 0.760526316
## 579  0.358 0.642 zero Group1 249  864  276 141 0.638461538 0.757894737
## 732  0.358 0.642 zero Group1 249  864  276 141 0.638461538 0.757894737
## 1336 0.358 0.642  one Group1 249  864  276 141 0.638461538 0.757894737
## 1428 0.358 0.642 zero Group1 249  864  276 141 0.638461538 0.757894737
## 104  0.356 0.644 zero Group1 249  860  280 141 0.638461538 0.754385965
## 592  0.356 0.644 zero Group1 249  860  280 141 0.638461538 0.754385965
## 792  0.356 0.644 zero Group1 249  860  280 141 0.638461538 0.754385965
## 1389 0.356 0.644 zero Group1 249  860  280 141 0.638461538 0.754385965
## 333  0.354 0.646 zero Group1 249  856  284 141 0.638461538 0.750877193
## 383  0.354 0.646 zero Group1 249  856  284 141 0.638461538 0.750877193
## 798  0.354 0.646 zero Group1 249  856  284 141 0.638461538 0.750877193
## 1411 0.354 0.646 zero Group1 249  856  284 141 0.638461538 0.750877193
## 545  0.352 0.648  one Group1 251  852  288 139 0.643589744 0.747368421
## 846  0.352 0.648 zero Group1 251  852  288 139 0.643589744 0.747368421
## 896  0.352 0.648 zero Group1 251  852  288 139 0.643589744 0.747368421
## 1220 0.352 0.648 zero Group1 251  852  288 139 0.643589744 0.747368421
## 1293 0.352 0.648  one Group1 251  852  288 139 0.643589744 0.747368421
## 1494 0.352 0.648 zero Group1 251  852  288 139 0.643589744 0.747368421
## 178  0.350 0.650 zero Group1 252  850  290 138 0.646153846 0.745614035
## 713  0.350 0.650  one Group1 252  850  290 138 0.646153846 0.745614035
## 1157 0.350 0.650 zero Group1 252  850  290 138 0.646153846 0.745614035
## 168  0.348 0.652 zero Group1 253  845  295 137 0.648717949 0.741228070
## 295  0.348 0.652 zero Group1 253  845  295 137 0.648717949 0.741228070
## 471  0.348 0.652  one Group1 253  845  295 137 0.648717949 0.741228070
## 647  0.348 0.652 zero Group1 253  845  295 137 0.648717949 0.741228070
## 776  0.348 0.652 zero Group1 253  845  295 137 0.648717949 0.741228070
## 832  0.348 0.652 zero Group1 253  845  295 137 0.648717949 0.741228070
## 7    0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 386  0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 494  0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 598  0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 682  0.346 0.654  one Group1 254  837  303 136 0.651282051 0.734210526
## 1053 0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 1283 0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 1326 0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 1456 0.346 0.654 zero Group1 254  837  303 136 0.651282051 0.734210526
## 300  0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 370  0.344 0.656  one Group1 256  829  311 134 0.656410256 0.727192982
## 394  0.344 0.656  one Group1 256  829  311 134 0.656410256 0.727192982
## 493  0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 919  0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 1102 0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 1178 0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 1247 0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 1394 0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 1422 0.344 0.656 zero Group1 256  829  311 134 0.656410256 0.727192982
## 101  0.342 0.658 zero Group1 257  825  315 133 0.658974359 0.723684211
## 301  0.342 0.658 zero Group1 257  825  315 133 0.658974359 0.723684211
## 548  0.342 0.658 zero Group1 257  825  315 133 0.658974359 0.723684211
## 1083 0.342 0.658  one Group1 257  825  315 133 0.658974359 0.723684211
## 1467 0.342 0.658 zero Group1 257  825  315 133 0.658974359 0.723684211
## 1040 0.340 0.660 zero Group1 257  824  316 133 0.658974359 0.722807018
## 297  0.338 0.662  one Group1 258  822  318 132 0.661538462 0.721052632
## 424  0.338 0.662 zero Group1 258  822  318 132 0.661538462 0.721052632
## 1396 0.338 0.662 zero Group1 258  822  318 132 0.661538462 0.721052632
## 91   0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 288  0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 341  0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 413  0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 547  0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 601  0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 677  0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 1076 0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 1125 0.336 0.664  one Group1 259  812  328 131 0.664102564 0.712280702
## 1169 0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 1493 0.336 0.664 zero Group1 259  812  328 131 0.664102564 0.712280702
## 132  0.334 0.666 zero Group1 259  808  332 131 0.664102564 0.708771930
## 831  0.334 0.666 zero Group1 259  808  332 131 0.664102564 0.708771930
## 1148 0.334 0.666 zero Group1 259  808  332 131 0.664102564 0.708771930
## 1162 0.334 0.666 zero Group1 259  808  332 131 0.664102564 0.708771930
## 1468 0.332 0.668 zero Group1 259  807  333 131 0.664102564 0.707894737
## 193  0.330 0.670  one Group1 260  805  335 130 0.666666667 0.706140351
## 252  0.330 0.670 zero Group1 260  805  335 130 0.666666667 0.706140351
## 586  0.330 0.670 zero Group1 260  805  335 130 0.666666667 0.706140351
## 214  0.328 0.672 zero Group1 261  802  338 129 0.669230769 0.703508772
## 915  0.328 0.672 zero Group1 261  802  338 129 0.669230769 0.703508772
## 974  0.328 0.672 zero Group1 261  802  338 129 0.669230769 0.703508772
## 1334 0.328 0.672  one Group1 261  802  338 129 0.669230769 0.703508772
## 6    0.326 0.674 zero Group1 263  799  341 127 0.674358974 0.700877193
## 390  0.326 0.674  one Group1 263  799  341 127 0.674358974 0.700877193
## 393  0.326 0.674  one Group1 263  799  341 127 0.674358974 0.700877193
## 736  0.326 0.674 zero Group1 263  799  341 127 0.674358974 0.700877193
## 1215 0.326 0.674 zero Group1 263  799  341 127 0.674358974 0.700877193
## 47   0.324 0.676 zero Group1 264  796  344 126 0.676923077 0.698245614
## 881  0.324 0.676  one Group1 264  796  344 126 0.676923077 0.698245614
## 959  0.324 0.676 zero Group1 264  796  344 126 0.676923077 0.698245614
## 1057 0.324 0.676 zero Group1 264  796  344 126 0.676923077 0.698245614
## 269  0.322 0.678 zero Group1 264  791  349 126 0.676923077 0.693859649
## 428  0.322 0.678 zero Group1 264  791  349 126 0.676923077 0.693859649
## 621  0.322 0.678 zero Group1 264  791  349 126 0.676923077 0.693859649
## 745  0.322 0.678 zero Group1 264  791  349 126 0.676923077 0.693859649
## 1449 0.322 0.678 zero Group1 264  791  349 126 0.676923077 0.693859649
## 382  0.320 0.680 zero Group1 266  786  354 124 0.682051282 0.689473684
## 451  0.320 0.680 zero Group1 266  786  354 124 0.682051282 0.689473684
## 768  0.320 0.680 zero Group1 266  786  354 124 0.682051282 0.689473684
## 841  0.320 0.680 zero Group1 266  786  354 124 0.682051282 0.689473684
## 1122 0.320 0.680  one Group1 266  786  354 124 0.682051282 0.689473684
## 1235 0.320 0.680 zero Group1 266  786  354 124 0.682051282 0.689473684
## 1340 0.320 0.680  one Group1 266  786  354 124 0.682051282 0.689473684
## 37   0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 235  0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 407  0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 425  0.318 0.682  one Group1 267  779  361 123 0.684615385 0.683333333
## 577  0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 655  0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 928  0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 1350 0.318 0.682 zero Group1 267  779  361 123 0.684615385 0.683333333
## 24   0.316 0.684 zero Group1 269  777  363 121 0.689743590 0.681578947
## 778  0.316 0.684  one Group1 269  777  363 121 0.689743590 0.681578947
## 876  0.316 0.684  one Group1 269  777  363 121 0.689743590 0.681578947
## 885  0.316 0.684 zero Group1 269  777  363 121 0.689743590 0.681578947
## 271  0.314 0.686 zero Group1 272  773  367 118 0.697435897 0.678070175
## 512  0.314 0.686 zero Group1 272  773  367 118 0.697435897 0.678070175
## 862  0.314 0.686  one Group1 272  773  367 118 0.697435897 0.678070175
## 944  0.314 0.686  one Group1 272  773  367 118 0.697435897 0.678070175
## 949  0.314 0.686  one Group1 272  773  367 118 0.697435897 0.678070175
## 1219 0.314 0.686 zero Group1 272  773  367 118 0.697435897 0.678070175
## 1253 0.314 0.686 zero Group1 272  773  367 118 0.697435897 0.678070175
## 263  0.312 0.688 zero Group1 273  770  370 117 0.700000000 0.675438596
## 368  0.312 0.688  one Group1 273  770  370 117 0.700000000 0.675438596
## 1039 0.312 0.688 zero Group1 273  770  370 117 0.700000000 0.675438596
## 1092 0.312 0.688 zero Group1 273  770  370 117 0.700000000 0.675438596
## 4    0.310 0.690 zero Group1 274  765  375 116 0.702564103 0.671052632
## 372  0.310 0.690  one Group1 274  765  375 116 0.702564103 0.671052632
## 726  0.310 0.690 zero Group1 274  765  375 116 0.702564103 0.671052632
## 757  0.310 0.690 zero Group1 274  765  375 116 0.702564103 0.671052632
## 1062 0.310 0.690 zero Group1 274  765  375 116 0.702564103 0.671052632
## 1185 0.310 0.690 zero Group1 274  765  375 116 0.702564103 0.671052632
## 55   0.308 0.692 zero Group1 275  761  379 115 0.705128205 0.667543860
## 926  0.308 0.692 zero Group1 275  761  379 115 0.705128205 0.667543860
## 1150 0.308 0.692  one Group1 275  761  379 115 0.705128205 0.667543860
## 1204 0.308 0.692 zero Group1 275  761  379 115 0.705128205 0.667543860
## 1324 0.308 0.692 zero Group1 275  761  379 115 0.705128205 0.667543860
## 154  0.306 0.694  one Group1 276  759  381 114 0.707692308 0.665789474
## 1172 0.306 0.694 zero Group1 276  759  381 114 0.707692308 0.665789474
## 1316 0.306 0.694 zero Group1 276  759  381 114 0.707692308 0.665789474
## 217  0.304 0.696  one Group1 281  757  383 109 0.720512821 0.664035088
## 371  0.304 0.696  one Group1 281  757  383 109 0.720512821 0.664035088
## 618  0.304 0.696  one Group1 281  757  383 109 0.720512821 0.664035088
## 712  0.304 0.696  one Group1 281  757  383 109 0.720512821 0.664035088
## 729  0.304 0.696 zero Group1 281  757  383 109 0.720512821 0.664035088
## 1099 0.304 0.696  one Group1 281  757  383 109 0.720512821 0.664035088
## 1488 0.304 0.696 zero Group1 281  757  383 109 0.720512821 0.664035088
## 38   0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 68   0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 305  0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 585  0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 812  0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 854  0.302 0.698  one Group1 285  749  391 105 0.730769231 0.657017544
## 880  0.302 0.698  one Group1 285  749  391 105 0.730769231 0.657017544
## 973  0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 1195 0.302 0.698  one Group1 285  749  391 105 0.730769231 0.657017544
## 1284 0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 1290 0.302 0.698  one Group1 285  749  391 105 0.730769231 0.657017544
## 1492 0.302 0.698 zero Group1 285  749  391 105 0.730769231 0.657017544
## 664  0.300 0.700 zero Group1 285  745  395 105 0.730769231 0.653508772
## 1034 0.300 0.700 zero Group1 285  745  395 105 0.730769231 0.653508772
## 1060 0.300 0.700 zero Group1 285  745  395 105 0.730769231 0.653508772
## 1136 0.300 0.700 zero Group1 285  745  395 105 0.730769231 0.653508772
## 49   0.296 0.704 zero Group1 286  743  397 104 0.733333333 0.651754386
## 290  0.296 0.704  one Group1 286  743  397 104 0.733333333 0.651754386
## 1465 0.296 0.704 zero Group1 286  743  397 104 0.733333333 0.651754386
## 109  0.294 0.706 zero Group1 286  741  399 104 0.733333333 0.650000000
## 265  0.294 0.706 zero Group1 286  741  399 104 0.733333333 0.650000000
## 251  0.292 0.708 zero Group1 287  738  402 103 0.735897436 0.647368421
## 373  0.292 0.708 zero Group1 287  738  402 103 0.735897436 0.647368421
## 628  0.292 0.708  one Group1 287  738  402 103 0.735897436 0.647368421
## 746  0.292 0.708 zero Group1 287  738  402 103 0.735897436 0.647368421
## 274  0.290 0.710 zero Group1 290  734  406 100 0.743589744 0.643859649
## 342  0.290 0.710 zero Group1 290  734  406 100 0.743589744 0.643859649
## 857  0.290 0.710  one Group1 290  734  406 100 0.743589744 0.643859649
## 971  0.290 0.710 zero Group1 290  734  406 100 0.743589744 0.643859649
## 996  0.290 0.710 zero Group1 290  734  406 100 0.743589744 0.643859649
## 1049 0.290 0.710  one Group1 290  734  406 100 0.743589744 0.643859649
## 1123 0.290 0.710  one Group1 290  734  406 100 0.743589744 0.643859649
## 463  0.288 0.712  one Group1 292  731  409  98 0.748717949 0.641228070
## 771  0.288 0.712 zero Group1 292  731  409  98 0.748717949 0.641228070
## 1095 0.288 0.712  one Group1 292  731  409  98 0.748717949 0.641228070
## 1328 0.288 0.712 zero Group1 292  731  409  98 0.748717949 0.641228070
## 1485 0.288 0.712 zero Group1 292  731  409  98 0.748717949 0.641228070
## 378  0.286 0.714 zero Group1 293  729  411  97 0.751282051 0.639473684
## 1255 0.286 0.714 zero Group1 293  729  411  97 0.751282051 0.639473684
## 1365 0.286 0.714  one Group1 293  729  411  97 0.751282051 0.639473684
## 27   0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 194  0.284 0.716  one Group1 294  721  419  96 0.753846154 0.632456140
## 595  0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 901  0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 922  0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 966  0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 1001 0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 1179 0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 1504 0.284 0.716 zero Group1 294  721  419  96 0.753846154 0.632456140
## 646  0.282 0.718  one Group1 296  717  423  94 0.758974359 0.628947368
## 710  0.282 0.718  one Group1 296  717  423  94 0.758974359 0.628947368
## 740  0.282 0.718 zero Group1 296  717  423  94 0.758974359 0.628947368
## 759  0.282 0.718 zero Group1 296  717  423  94 0.758974359 0.628947368
## 921  0.282 0.718 zero Group1 296  717  423  94 0.758974359 0.628947368
## 1207 0.282 0.718 zero Group1 296  717  423  94 0.758974359 0.628947368
## 74   0.280 0.720 zero Group1 298  714  426  92 0.764102564 0.626315789
## 150  0.280 0.720  one Group1 298  714  426  92 0.764102564 0.626315789
## 259  0.280 0.720 zero Group1 298  714  426  92 0.764102564 0.626315789
## 884  0.280 0.720 zero Group1 298  714  426  92 0.764102564 0.626315789
## 1296 0.280 0.720  one Group1 298  714  426  92 0.764102564 0.626315789
## 145  0.278 0.722 zero Group1 299  708  432  91 0.766666667 0.621052632
## 180  0.278 0.722 zero Group1 299  708  432  91 0.766666667 0.621052632
## 935  0.278 0.722  one Group1 299  708  432  91 0.766666667 0.621052632
## 1171 0.278 0.722 zero Group1 299  708  432  91 0.766666667 0.621052632
## 1188 0.278 0.722 zero Group1 299  708  432  91 0.766666667 0.621052632
## 1495 0.278 0.722 zero Group1 299  708  432  91 0.766666667 0.621052632
## 1528 0.278 0.722 zero Group1 299  708  432  91 0.766666667 0.621052632
## 163  0.276 0.724 zero Group1 300  703  437  90 0.769230769 0.616666667
## 640  0.276 0.724  one Group1 300  703  437  90 0.769230769 0.616666667
## 722  0.276 0.724 zero Group1 300  703  437  90 0.769230769 0.616666667
## 992  0.276 0.724 zero Group1 300  703  437  90 0.769230769 0.616666667
## 1030 0.276 0.724 zero Group1 300  703  437  90 0.769230769 0.616666667
## 1483 0.276 0.724 zero Group1 300  703  437  90 0.769230769 0.616666667
## 66   0.274 0.726 zero Group1 302  700  440  88 0.774358974 0.614035088
## 953  0.274 0.726  one Group1 302  700  440  88 0.774358974 0.614035088
## 1071 0.274 0.726 zero Group1 302  700  440  88 0.774358974 0.614035088
## 1191 0.274 0.726 zero Group1 302  700  440  88 0.774358974 0.614035088
## 1520 0.274 0.726  one Group1 302  700  440  88 0.774358974 0.614035088
## 73   0.272 0.728 zero Group1 306  694  446  84 0.784615385 0.608771930
## 420  0.272 0.728 zero Group1 306  694  446  84 0.784615385 0.608771930
## 540  0.272 0.728  one Group1 306  694  446  84 0.784615385 0.608771930
## 610  0.272 0.728  one Group1 306  694  446  84 0.784615385 0.608771930
## 639  0.272 0.728  one Group1 306  694  446  84 0.784615385 0.608771930
## 692  0.272 0.728 zero Group1 306  694  446  84 0.784615385 0.608771930
## 904  0.272 0.728 zero Group1 306  694  446  84 0.784615385 0.608771930
## 1013 0.272 0.728 zero Group1 306  694  446  84 0.784615385 0.608771930
## 1119 0.272 0.728  one Group1 306  694  446  84 0.784615385 0.608771930
## 1317 0.272 0.728 zero Group1 306  694  446  84 0.784615385 0.608771930
## 207  0.270 0.730 zero Group1 311  691  449  79 0.797435897 0.606140351
## 474  0.270 0.730 zero Group1 311  691  449  79 0.797435897 0.606140351
## 481  0.270 0.730 zero Group1 311  691  449  79 0.797435897 0.606140351
## 542  0.270 0.730  one Group1 311  691  449  79 0.797435897 0.606140351
## 629  0.270 0.730  one Group1 311  691  449  79 0.797435897 0.606140351
## 633  0.270 0.730  one Group1 311  691  449  79 0.797435897 0.606140351
## 861  0.270 0.730  one Group1 311  691  449  79 0.797435897 0.606140351
## 1005 0.270 0.730  one Group1 311  691  449  79 0.797435897 0.606140351
## 240  0.268 0.732 zero Group1 311  686  454  79 0.797435897 0.601754386
## 697  0.268 0.732 zero Group1 311  686  454  79 0.797435897 0.601754386
## 888  0.268 0.732 zero Group1 311  686  454  79 0.797435897 0.601754386
## 1015 0.268 0.732 zero Group1 311  686  454  79 0.797435897 0.601754386
## 1280 0.268 0.732 zero Group1 311  686  454  79 0.797435897 0.601754386
## 279  0.266 0.734  one Group1 312  683  457  78 0.800000000 0.599122807
## 445  0.266 0.734 zero Group1 312  683  457  78 0.800000000 0.599122807
## 1260 0.266 0.734 zero Group1 312  683  457  78 0.800000000 0.599122807
## 1523 0.266 0.734 zero Group1 312  683  457  78 0.800000000 0.599122807
## 256  0.264 0.736 zero Group1 314  677  463  76 0.805128205 0.593859649
## 437  0.264 0.736  one Group1 314  677  463  76 0.805128205 0.593859649
## 917  0.264 0.736 zero Group1 314  677  463  76 0.805128205 0.593859649
## 1154 0.264 0.736  one Group1 314  677  463  76 0.805128205 0.593859649
## 1182 0.264 0.736 zero Group1 314  677  463  76 0.805128205 0.593859649
## 1239 0.264 0.736 zero Group1 314  677  463  76 0.805128205 0.593859649
## 1387 0.264 0.736 zero Group1 314  677  463  76 0.805128205 0.593859649
## 1476 0.264 0.736 zero Group1 314  677  463  76 0.805128205 0.593859649
## 266  0.262 0.738 zero Group1 315  672  468  75 0.807692308 0.589473684
## 509  0.262 0.738 zero Group1 315  672  468  75 0.807692308 0.589473684
## 914  0.262 0.738 zero Group1 315  672  468  75 0.807692308 0.589473684
## 1098 0.262 0.738  one Group1 315  672  468  75 0.807692308 0.589473684
## 1190 0.262 0.738 zero Group1 315  672  468  75 0.807692308 0.589473684
## 1344 0.262 0.738 zero Group1 315  672  468  75 0.807692308 0.589473684
## 148  0.260 0.740  one Group1 317  666  474  73 0.812820513 0.584210526
## 152  0.260 0.740  one Group1 317  666  474  73 0.812820513 0.584210526
## 495  0.260 0.740 zero Group1 317  666  474  73 0.812820513 0.584210526
## 568  0.260 0.740 zero Group1 317  666  474  73 0.812820513 0.584210526
## 1377 0.260 0.740 zero Group1 317  666  474  73 0.812820513 0.584210526
## 1404 0.260 0.740 zero Group1 317  666  474  73 0.812820513 0.584210526
## 1421 0.260 0.740 zero Group1 317  666  474  73 0.812820513 0.584210526
## 1475 0.260 0.740 zero Group1 317  666  474  73 0.812820513 0.584210526
## 83   0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 262  0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 497  0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 635  0.258 0.742  one Group1 318  659  481  72 0.815384615 0.578070175
## 794  0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 828  0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 893  0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 1210 0.258 0.742 zero Group1 318  659  481  72 0.815384615 0.578070175
## 25   0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 39   0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 575  0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 641  0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 680  0.256 0.744  one Group1 320  649  491  70 0.820512821 0.569298246
## 731  0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 813  0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 965  0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 1225 0.256 0.744  one Group1 320  649  491  70 0.820512821 0.569298246
## 1246 0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 1352 0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 1403 0.256 0.744 zero Group1 320  649  491  70 0.820512821 0.569298246
## 175  0.254 0.746 zero Group1 323  643  497  67 0.828205128 0.564035088
## 397  0.254 0.746  one Group1 323  643  497  67 0.828205128 0.564035088
## 511  0.254 0.746 zero Group1 323  643  497  67 0.828205128 0.564035088
## 620  0.254 0.746 zero Group1 323  643  497  67 0.828205128 0.564035088
## 695  0.254 0.746 zero Group1 323  643  497  67 0.828205128 0.564035088
## 701  0.254 0.746 zero Group1 323  643  497  67 0.828205128 0.564035088
## 1153 0.254 0.746  one Group1 323  643  497  67 0.828205128 0.564035088
## 1399 0.254 0.746 zero Group1 323  643  497  67 0.828205128 0.564035088
## 1510 0.254 0.746  one Group1 323  643  497  67 0.828205128 0.564035088
## 93   0.252 0.748 zero Group1 325  637  503  65 0.833333333 0.558771930
## 245  0.252 0.748 zero Group1 325  637  503  65 0.833333333 0.558771930
## 346  0.252 0.748 zero Group1 325  637  503  65 0.833333333 0.558771930
## 366  0.252 0.748  one Group1 325  637  503  65 0.833333333 0.558771930
## 417  0.252 0.748 zero Group1 325  637  503  65 0.833333333 0.558771930
## 948  0.252 0.748  one Group1 325  637  503  65 0.833333333 0.558771930
## 1075 0.252 0.748 zero Group1 325  637  503  65 0.833333333 0.558771930
## 1261 0.252 0.748 zero Group1 325  637  503  65 0.833333333 0.558771930
## 40   0.250 0.750 zero Group1 325  634  506  65 0.833333333 0.556140351
## 1044 0.250 0.750 zero Group1 325  634  506  65 0.833333333 0.556140351
## 1249 0.250 0.750 zero Group1 325  634  506  65 0.833333333 0.556140351
## 243  0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 532  0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 671  0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 672  0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 837  0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 1277 0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 1499 0.248 0.752 zero Group1 325  627  513  65 0.833333333 0.550000000
## 328  0.246 0.754 zero Group1 327  624  516  63 0.838461538 0.547368421
## 347  0.246 0.754 zero Group1 327  624  516  63 0.838461538 0.547368421
## 611  0.246 0.754  one Group1 327  624  516  63 0.838461538 0.547368421
## 1158 0.246 0.754 zero Group1 327  624  516  63 0.838461538 0.547368421
## 1446 0.246 0.754  one Group1 327  624  516  63 0.838461538 0.547368421
## 2    0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 87   0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 232  0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 246  0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 261  0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 691  0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 1080 0.244 0.756  one Group1 328  617  523  62 0.841025641 0.541228070
## 1222 0.244 0.756 zero Group1 328  617  523  62 0.841025641 0.541228070
## 286  0.242 0.758 zero Group1 329  611  529  61 0.843589744 0.535964912
## 381  0.242 0.758 zero Group1 329  611  529  61 0.843589744 0.535964912
## 997  0.242 0.758 zero Group1 329  611  529  61 0.843589744 0.535964912
## 1061 0.242 0.758 zero Group1 329  611  529  61 0.843589744 0.535964912
## 1139 0.242 0.758 zero Group1 329  611  529  61 0.843589744 0.535964912
## 1142 0.242 0.758 zero Group1 329  611  529  61 0.843589744 0.535964912
## 1440 0.242 0.758  one Group1 329  611  529  61 0.843589744 0.535964912
## 56   0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 208  0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 406  0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 593  0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 829  0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 875  0.240 0.760  one Group1 330  603  537  60 0.846153846 0.528947368
## 969  0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 1208 0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 1359 0.240 0.760 zero Group1 330  603  537  60 0.846153846 0.528947368
## 693  0.238 0.762 zero Group1 334  598  542  56 0.856410256 0.524561404
## 699  0.238 0.762 zero Group1 334  598  542  56 0.856410256 0.524561404
## 850  0.238 0.762  one Group1 334  598  542  56 0.856410256 0.524561404
## 1118 0.238 0.762  one Group1 334  598  542  56 0.856410256 0.524561404
## 1135 0.238 0.762 zero Group1 334  598  542  56 0.856410256 0.524561404
## 1263 0.238 0.762  one Group1 334  598  542  56 0.856410256 0.524561404
## 1272 0.238 0.762 zero Group1 334  598  542  56 0.856410256 0.524561404
## 1320 0.238 0.762 zero Group1 334  598  542  56 0.856410256 0.524561404
## 1373 0.238 0.762  one Group1 334  598  542  56 0.856410256 0.524561404
## 237  0.236 0.764 zero Group1 335  596  544  55 0.858974359 0.522807018
## 615  0.236 0.764  one Group1 335  596  544  55 0.858974359 0.522807018
## 1355 0.236 0.764 zero Group1 335  596  544  55 0.858974359 0.522807018
## 694  0.234 0.766 zero Group1 335  593  547  55 0.858974359 0.520175439
## 1038 0.234 0.766 zero Group1 335  593  547  55 0.858974359 0.520175439
## 1313 0.234 0.766 zero Group1 335  593  547  55 0.858974359 0.520175439
## 485  0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 507  0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 679  0.232 0.768  one Group1 336  586  554  54 0.861538462 0.514035088
## 988  0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 1066 0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 1279 0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 1346 0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 1354 0.232 0.768 zero Group1 336  586  554  54 0.861538462 0.514035088
## 183  0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 260  0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 558  0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 1054 0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 1427 0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 1481 0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 1525 0.230 0.770 zero Group1 336  579  561  54 0.861538462 0.507894737
## 444  0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 748  0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 793  0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 803  0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 821  0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 1035 0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 1229 0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 1390 0.228 0.772 zero Group1 336  571  569  54 0.861538462 0.500877193
## 320  0.226 0.774 zero Group1 337  567  573  53 0.864102564 0.497368421
## 376  0.226 0.774 zero Group1 337  567  573  53 0.864102564 0.497368421
## 422  0.226 0.774 zero Group1 337  567  573  53 0.864102564 0.497368421
## 503  0.226 0.774 zero Group1 337  567  573  53 0.864102564 0.497368421
## 1165 0.226 0.774  one Group1 337  567  573  53 0.864102564 0.497368421
## 5    0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 65   0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 316  0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 414  0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 505  0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 980  0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 1014 0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 1170 0.224 0.776 zero Group1 337  559  581  53 0.864102564 0.490350877
## 29   0.222 0.778 zero Group1 337  553  587  53 0.864102564 0.485087719
## 317  0.222 0.778 zero Group1 337  553  587  53 0.864102564 0.485087719
## 419  0.222 0.778 zero Group1 337  553  587  53 0.864102564 0.485087719
## 905  0.222 0.778 zero Group1 337  553  587  53 0.864102564 0.485087719
## 1016 0.222 0.778 zero Group1 337  553  587  53 0.864102564 0.485087719
## 1392 0.222 0.778 zero Group1 337  553  587  53 0.864102564 0.485087719
## 469  0.220 0.780  one Group1 338  551  589  52 0.866666667 0.483333333
## 590  0.220 0.780 zero Group1 338  551  589  52 0.866666667 0.483333333
## 1068 0.220 0.780 zero Group1 338  551  589  52 0.866666667 0.483333333
## 287  0.218 0.782 zero Group1 339  546  594  51 0.869230769 0.478947368
## 388  0.218 0.782 zero Group1 339  546  594  51 0.869230769 0.478947368
## 597  0.218 0.782 zero Group1 339  546  594  51 0.869230769 0.478947368
## 702  0.218 0.782 zero Group1 339  546  594  51 0.869230769 0.478947368
## 1114 0.218 0.782 zero Group1 339  546  594  51 0.869230769 0.478947368
## 1366 0.218 0.782  one Group1 339  546  594  51 0.869230769 0.478947368
## 131  0.216 0.784 zero Group1 341  540  600  49 0.874358974 0.473684211
## 458  0.216 0.784 zero Group1 341  540  600  49 0.874358974 0.473684211
## 574  0.216 0.784 zero Group1 341  540  600  49 0.874358974 0.473684211
## 1018 0.216 0.784  one Group1 341  540  600  49 0.874358974 0.473684211
## 1028 0.216 0.784  one Group1 341  540  600  49 0.874358974 0.473684211
## 1245 0.216 0.784 zero Group1 341  540  600  49 0.874358974 0.473684211
## 1391 0.216 0.784 zero Group1 341  540  600  49 0.874358974 0.473684211
## 1453 0.216 0.784 zero Group1 341  540  600  49 0.874358974 0.473684211
## 177  0.214 0.786 zero Group1 342  536  604  48 0.876923077 0.470175439
## 510  0.214 0.786 zero Group1 342  536  604  48 0.876923077 0.470175439
## 836  0.214 0.786 zero Group1 342  536  604  48 0.876923077 0.470175439
## 867  0.214 0.786 zero Group1 342  536  604  48 0.876923077 0.470175439
## 1512 0.214 0.786  one Group1 342  536  604  48 0.876923077 0.470175439
## 241  0.212 0.788 zero Group1 343  532  608  47 0.879487179 0.466666667
## 755  0.212 0.788 zero Group1 343  532  608  47 0.879487179 0.466666667
## 758  0.212 0.788 zero Group1 343  532  608  47 0.879487179 0.466666667
## 1164 0.212 0.788  one Group1 343  532  608  47 0.879487179 0.466666667
## 1176 0.212 0.788 zero Group1 343  532  608  47 0.879487179 0.466666667
## 45   0.210 0.790 zero Group1 344  527  613  46 0.882051282 0.462280702
## 51   0.210 0.790 zero Group1 344  527  613  46 0.882051282 0.462280702
## 359  0.210 0.790 zero Group1 344  527  613  46 0.882051282 0.462280702
## 1233 0.210 0.790 zero Group1 344  527  613  46 0.882051282 0.462280702
## 1265 0.210 0.790  one Group1 344  527  613  46 0.882051282 0.462280702
## 1530 0.210 0.790 zero Group1 344  527  613  46 0.882051282 0.462280702
## 496  0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 528  0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 670  0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 673  0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 804  0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 1180 0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 1524 0.208 0.792 zero Group1 344  520  620  46 0.882051282 0.456140351
## 15   0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 162  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 231  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 429  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 667  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 762  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 911  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 978  0.206 0.794 zero Group1 344  512  628  46 0.882051282 0.449122807
## 408  0.204 0.796 zero Group1 347  507  633  43 0.889743590 0.444736842
## 412  0.204 0.796 zero Group1 347  507  633  43 0.889743590 0.444736842
## 653  0.204 0.796 zero Group1 347  507  633  43 0.889743590 0.444736842
## 718  0.204 0.796 zero Group1 347  507  633  43 0.889743590 0.444736842
## 848  0.204 0.796  one Group1 347  507  633  43 0.889743590 0.444736842
## 1193 0.204 0.796  one Group1 347  507  633  43 0.889743590 0.444736842
## 1194 0.204 0.796  one Group1 347  507  633  43 0.889743590 0.444736842
## 1202 0.204 0.796 zero Group1 347  507  633  43 0.889743590 0.444736842
## 54   0.202 0.798 zero Group1 348  501  639  42 0.892307692 0.439473684
## 146  0.202 0.798 zero Group1 348  501  639  42 0.892307692 0.439473684
## 627  0.202 0.798 zero Group1 348  501  639  42 0.892307692 0.439473684
## 763  0.202 0.798 zero Group1 348  501  639  42 0.892307692 0.439473684
## 805  0.202 0.798  one Group1 348  501  639  42 0.892307692 0.439473684
## 1041 0.202 0.798 zero Group1 348  501  639  42 0.892307692 0.439473684
## 1361 0.202 0.798 zero Group1 348  501  639  42 0.892307692 0.439473684
## 35   0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 80   0.200 0.800  one Group1 350  494  646  40 0.897435897 0.433333333
## 283  0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 289  0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 934  0.200 0.800  one Group1 350  494  646  40 0.897435897 0.433333333
## 1063 0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 1160 0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 1234 0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 1358 0.200 0.800 zero Group1 350  494  646  40 0.897435897 0.433333333
## 188  0.198 0.802 zero Group1 350  490  650  40 0.897435897 0.429824561
## 823  0.198 0.802 zero Group1 350  490  650  40 0.897435897 0.429824561
## 920  0.198 0.802 zero Group1 350  490  650  40 0.897435897 0.429824561
## 1349 0.198 0.802 zero Group1 350  490  650  40 0.897435897 0.429824561
## 179  0.196 0.804 zero Group1 351  484  656  39 0.900000000 0.424561404
## 343  0.196 0.804 zero Group1 351  484  656  39 0.900000000 0.424561404
## 506  0.196 0.804 zero Group1 351  484  656  39 0.900000000 0.424561404
## 515  0.196 0.804 zero Group1 351  484  656  39 0.900000000 0.424561404
## 1275 0.196 0.804 zero Group1 351  484  656  39 0.900000000 0.424561404
## 1339 0.196 0.804  one Group1 351  484  656  39 0.900000000 0.424561404
## 1430 0.196 0.804 zero Group1 351  484  656  39 0.900000000 0.424561404
## 92   0.194 0.806 zero Group1 353  478  662  37 0.905128205 0.419298246
## 228  0.194 0.806 zero Group1 353  478  662  37 0.905128205 0.419298246
## 310  0.194 0.806 zero Group1 353  478  662  37 0.905128205 0.419298246
## 807  0.194 0.806  one Group1 353  478  662  37 0.905128205 0.419298246
## 986  0.194 0.806 zero Group1 353  478  662  37 0.905128205 0.419298246
## 1286 0.194 0.806 zero Group1 353  478  662  37 0.905128205 0.419298246
## 1298 0.194 0.806  one Group1 353  478  662  37 0.905128205 0.419298246
## 1330 0.194 0.806 zero Group1 353  478  662  37 0.905128205 0.419298246
## 202  0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 364  0.192 0.808  one Group1 354  470  670  36 0.907692308 0.412280702
## 546  0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 972  0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 982  0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 1012 0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 1056 0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 1242 0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 1303 0.192 0.808 zero Group1 354  470  670  36 0.907692308 0.412280702
## 186  0.190 0.810 zero Group1 354  465  675  36 0.907692308 0.407894737
## 189  0.190 0.810 zero Group1 354  465  675  36 0.907692308 0.407894737
## 477  0.190 0.810 zero Group1 354  465  675  36 0.907692308 0.407894737
## 508  0.190 0.810 zero Group1 354  465  675  36 0.907692308 0.407894737
## 1141 0.190 0.810 zero Group1 354  465  675  36 0.907692308 0.407894737
## 176  0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 285  0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 623  0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 723  0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 923  0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 1200 0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 1266 0.188 0.812  one Group1 356  458  682  34 0.912820513 0.401754386
## 1374 0.188 0.812  one Group1 356  458  682  34 0.912820513 0.401754386
## 1412 0.188 0.812 zero Group1 356  458  682  34 0.912820513 0.401754386
## 182  0.186 0.814 zero Group1 359  456  684  31 0.920512821 0.400000000
## 571  0.186 0.814  one Group1 359  456  684  31 0.920512821 0.400000000
## 689  0.186 0.814  one Group1 359  456  684  31 0.920512821 0.400000000
## 1002 0.186 0.814 zero Group1 359  456  684  31 0.920512821 0.400000000
## 1048 0.186 0.814  one Group1 359  456  684  31 0.920512821 0.400000000
## 435  0.184 0.816 zero Group1 361  451  689  29 0.925641026 0.395614035
## 484  0.184 0.816 zero Group1 361  451  689  29 0.925641026 0.395614035
## 537  0.184 0.816  one Group1 361  451  689  29 0.925641026 0.395614035
## 665  0.184 0.816 zero Group1 361  451  689  29 0.925641026 0.395614035
## 734  0.184 0.816 zero Group1 361  451  689  29 0.925641026 0.395614035
## 956  0.184 0.816  one Group1 361  451  689  29 0.925641026 0.395614035
## 1149 0.184 0.816 zero Group1 361  451  689  29 0.925641026 0.395614035
## 313  0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 325  0.182 0.818  one Group1 362  442  698  28 0.928205128 0.387719298
## 402  0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 589  0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 685  0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 811  0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 984  0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 1046 0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 1203 0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 1257 0.182 0.818 zero Group1 362  442  698  28 0.928205128 0.387719298
## 385  0.180 0.820 zero Group1 362  439  701  28 0.928205128 0.385087719
## 730  0.180 0.820 zero Group1 362  439  701  28 0.928205128 0.385087719
## 767  0.180 0.820 zero Group1 362  439  701  28 0.928205128 0.385087719
## 254  0.178 0.822 zero Group1 364  436  704  26 0.933333333 0.382456140
## 499  0.178 0.822  one Group1 364  436  704  26 0.933333333 0.382456140
## 552  0.178 0.822 zero Group1 364  436  704  26 0.933333333 0.382456140
## 864  0.178 0.822  one Group1 364  436  704  26 0.933333333 0.382456140
## 977  0.178 0.822 zero Group1 364  436  704  26 0.933333333 0.382456140
## 28   0.176 0.824 zero Group1 364  432  708  26 0.933333333 0.378947368
## 33   0.176 0.824 zero Group1 364  432  708  26 0.933333333 0.378947368
## 357  0.176 0.824 zero Group1 364  432  708  26 0.933333333 0.378947368
## 1351 0.176 0.824 zero Group1 364  432  708  26 0.933333333 0.378947368
## 516  0.174 0.826 zero Group1 364  428  712  26 0.933333333 0.375438596
## 523  0.174 0.826 zero Group1 364  428  712  26 0.933333333 0.375438596
## 797  0.174 0.826 zero Group1 364  428  712  26 0.933333333 0.375438596
## 940  0.174 0.826 zero Group1 364  428  712  26 0.933333333 0.375438596
## 234  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 319  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 431  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 527  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 600  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 648  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 824  0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 1069 0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 1115 0.172 0.828 zero Group1 365  419  721  25 0.935897436 0.367543860
## 1335 0.172 0.828  one Group1 365  419  721  25 0.935897436 0.367543860
## 11   0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 67   0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 268  0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 303  0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 396  0.170 0.830  one Group1 366  409  731  24 0.938461538 0.358771930
## 488  0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 943  0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 991  0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 1311 0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 1348 0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 1416 0.170 0.830 zero Group1 366  409  731  24 0.938461538 0.358771930
## 30   0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 472  0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 659  0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 802  0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 860  0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 963  0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 1166 0.168 0.832  one Group1 367  400  740  23 0.941025641 0.350877193
## 1288 0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 1305 0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 1459 0.168 0.832 zero Group1 367  400  740  23 0.941025641 0.350877193
## 107  0.166 0.834 zero Group1 368  395  745  22 0.943589744 0.346491228
## 257  0.166 0.834 zero Group1 368  395  745  22 0.943589744 0.346491228
## 536  0.166 0.834  one Group1 368  395  745  22 0.943589744 0.346491228
## 652  0.166 0.834 zero Group1 368  395  745  22 0.943589744 0.346491228
## 662  0.166 0.834 zero Group1 368  395  745  22 0.943589744 0.346491228
## 995  0.166 0.834 zero Group1 368  395  745  22 0.943589744 0.346491228
## 53   0.164 0.836 zero Group1 369  391  749  21 0.946153846 0.342982456
## 276  0.164 0.836 zero Group1 369  391  749  21 0.946153846 0.342982456
## 398  0.164 0.836  one Group1 369  391  749  21 0.946153846 0.342982456
## 1307 0.164 0.836 zero Group1 369  391  749  21 0.946153846 0.342982456
## 1332 0.164 0.836 zero Group1 369  391  749  21 0.946153846 0.342982456
## 21   0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 86   0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 128  0.162 0.838  one Group1 371  381  759  19 0.951282051 0.334210526
## 160  0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 204  0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 696  0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 766  0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 1077 0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 1144 0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 1424 0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 1435 0.162 0.838  one Group1 371  381  759  19 0.951282051 0.334210526
## 1454 0.162 0.838 zero Group1 371  381  759  19 0.951282051 0.334210526
## 544  0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 554  0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 580  0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 605  0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 838  0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 1187 0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 1271 0.160 0.840 zero Group1 371  374  766  19 0.951282051 0.328070175
## 1    0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 120  0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 174  0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 199  0.158 0.842  one Group1 372  366  774  18 0.953846154 0.321052632
## 624  0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 1209 0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 1393 0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 1480 0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 1482 0.158 0.842 zero Group1 372  366  774  18 0.953846154 0.321052632
## 345  0.156 0.844 zero Group1 373  360  780  17 0.956410256 0.315789474
## 352  0.156 0.844 zero Group1 373  360  780  17 0.956410256 0.315789474
## 483  0.156 0.844 zero Group1 373  360  780  17 0.956410256 0.315789474
## 849  0.156 0.844  one Group1 373  360  780  17 0.956410256 0.315789474
## 890  0.156 0.844 zero Group1 373  360  780  17 0.956410256 0.315789474
## 1384 0.156 0.844 zero Group1 373  360  780  17 0.956410256 0.315789474
## 1419 0.156 0.844 zero Group1 373  360  780  17 0.956410256 0.315789474
## 70   0.154 0.846 zero Group1 373  356  784  17 0.956410256 0.312280702
## 535  0.154 0.846 zero Group1 373  356  784  17 0.956410256 0.312280702
## 847  0.154 0.846 zero Group1 373  356  784  17 0.956410256 0.312280702
## 1217 0.154 0.846 zero Group1 373  356  784  17 0.956410256 0.312280702
## 312  0.152 0.848 zero Group1 373  352  788  17 0.956410256 0.308771930
## 447  0.152 0.848 zero Group1 373  352  788  17 0.956410256 0.308771930
## 1087 0.152 0.848 zero Group1 373  352  788  17 0.956410256 0.308771930
## 1308 0.152 0.848 zero Group1 373  352  788  17 0.956410256 0.308771930
## 44   0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 89   0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 273  0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 452  0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 517  0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 555  0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 584  0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 773  0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 1130 0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 1285 0.150 0.850 zero Group1 373  342  798  17 0.956410256 0.300000000
## 133  0.148 0.852 zero Group1 374  338  802  16 0.958974359 0.296491228
## 192  0.148 0.852  one Group1 374  338  802  16 0.958974359 0.296491228
## 739  0.148 0.852 zero Group1 374  338  802  16 0.958974359 0.296491228
## 924  0.148 0.852 zero Group1 374  338  802  16 0.958974359 0.296491228
## 1479 0.148 0.852 zero Group1 374  338  802  16 0.958974359 0.296491228
## 164  0.146 0.854 zero Group1 375  333  807  15 0.961538462 0.292105263
## 165  0.146 0.854 zero Group1 375  333  807  15 0.961538462 0.292105263
## 244  0.146 0.854 zero Group1 375  333  807  15 0.961538462 0.292105263
## 898  0.146 0.854 zero Group1 375  333  807  15 0.961538462 0.292105263
## 1011 0.146 0.854 zero Group1 375  333  807  15 0.961538462 0.292105263
## 1151 0.146 0.854  one Group1 375  333  807  15 0.961538462 0.292105263
## 88   0.144 0.856 zero Group1 375  327  813  15 0.961538462 0.286842105
## 339  0.144 0.856 zero Group1 375  327  813  15 0.961538462 0.286842105
## 765  0.144 0.856 zero Group1 375  327  813  15 0.961538462 0.286842105
## 912  0.144 0.856 zero Group1 375  327  813  15 0.961538462 0.286842105
## 1192 0.144 0.856 zero Group1 375  327  813  15 0.961538462 0.286842105
## 1379 0.144 0.856 zero Group1 375  327  813  15 0.961538462 0.286842105
## 171  0.142 0.858 zero Group1 375  321  819  15 0.961538462 0.281578947
## 184  0.142 0.858 zero Group1 375  321  819  15 0.961538462 0.281578947
## 227  0.142 0.858 zero Group1 375  321  819  15 0.961538462 0.281578947
## 561  0.142 0.858 zero Group1 375  321  819  15 0.961538462 0.281578947
## 1074 0.142 0.858 zero Group1 375  321  819  15 0.961538462 0.281578947
## 1163 0.142 0.858 zero Group1 375  321  819  15 0.961538462 0.281578947
## 10   0.140 0.860 zero Group1 375  315  825  15 0.961538462 0.276315789
## 375  0.140 0.860 zero Group1 375  315  825  15 0.961538462 0.276315789
## 384  0.140 0.860 zero Group1 375  315  825  15 0.961538462 0.276315789
## 436  0.140 0.860 zero Group1 375  315  825  15 0.961538462 0.276315789
## 843  0.140 0.860 zero Group1 375  315  825  15 0.961538462 0.276315789
## 1126 0.140 0.860 zero Group1 375  315  825  15 0.961538462 0.276315789
## 137  0.138 0.862 zero Group1 377  310  830  13 0.966666667 0.271929825
## 315  0.138 0.862 zero Group1 377  310  830  13 0.966666667 0.271929825
## 467  0.138 0.862  one Group1 377  310  830  13 0.966666667 0.271929825
## 868  0.138 0.862 zero Group1 377  310  830  13 0.966666667 0.271929825
## 886  0.138 0.862 zero Group1 377  310  830  13 0.966666667 0.271929825
## 1256 0.138 0.862 zero Group1 377  310  830  13 0.966666667 0.271929825
## 1406 0.138 0.862  one Group1 377  310  830  13 0.966666667 0.271929825
## 582  0.136 0.864 zero Group1 377  306  834  13 0.966666667 0.268421053
## 1111 0.136 0.864 zero Group1 377  306  834  13 0.966666667 0.268421053
## 1331 0.136 0.864 zero Group1 377  306  834  13 0.966666667 0.268421053
## 1451 0.136 0.864 zero Group1 377  306  834  13 0.966666667 0.268421053
## 212  0.134 0.866 zero Group1 377  301  839  13 0.966666667 0.264035088
## 250  0.134 0.866 zero Group1 377  301  839  13 0.966666667 0.264035088
## 258  0.134 0.866 zero Group1 377  301  839  13 0.966666667 0.264035088
## 489  0.134 0.866 zero Group1 377  301  839  13 0.966666667 0.264035088
## 1397 0.134 0.866 zero Group1 377  301  839  13 0.966666667 0.264035088
## 449  0.132 0.868 zero Group1 377  297  843  13 0.966666667 0.260526316
## 524  0.132 0.868 zero Group1 377  297  843  13 0.966666667 0.260526316
## 968  0.132 0.868 zero Group1 377  297  843  13 0.966666667 0.260526316
## 1183 0.132 0.868 zero Group1 377  297  843  13 0.966666667 0.260526316
## 98   0.130 0.870 zero Group1 377  294  846  13 0.966666667 0.257894737
## 337  0.130 0.870 zero Group1 377  294  846  13 0.966666667 0.257894737
## 817  0.130 0.870 zero Group1 377  294  846  13 0.966666667 0.257894737
## 302  0.128 0.872 zero Group1 377  290  850  13 0.966666667 0.254385965
## 416  0.128 0.872 zero Group1 377  290  850  13 0.966666667 0.254385965
## 654  0.128 0.872 zero Group1 377  290  850  13 0.966666667 0.254385965
## 1429 0.128 0.872 zero Group1 377  290  850  13 0.966666667 0.254385965
## 105  0.126 0.874 zero Group1 378  286  854  12 0.969230769 0.250877193
## 253  0.126 0.874 zero Group1 378  286  854  12 0.969230769 0.250877193
## 1108 0.126 0.874 zero Group1 378  286  854  12 0.969230769 0.250877193
## 1127 0.126 0.874 zero Group1 378  286  854  12 0.969230769 0.250877193
## 1442 0.126 0.874  one Group1 378  286  854  12 0.969230769 0.250877193
## 284  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 336  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 387  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 432  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 676  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 800  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 870  0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 1159 0.124 0.876 zero Group1 378  278  862  12 0.969230769 0.243859649
## 170  0.122 0.878 zero Group1 379  274  866  11 0.971794872 0.240350877
## 216  0.122 0.878 zero Group1 379  274  866  11 0.971794872 0.240350877
## 238  0.122 0.878 zero Group1 379  274  866  11 0.971794872 0.240350877
## 1140 0.122 0.878 zero Group1 379  274  866  11 0.971794872 0.240350877
## 1371 0.122 0.878  one Group1 379  274  866  11 0.971794872 0.240350877
## 141  0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 211  0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 377  0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 448  0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 819  0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 1022 0.120 0.880  one Group1 381  267  873   9 0.976923077 0.234210526
## 1145 0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 1167 0.120 0.880  one Group1 381  267  873   9 0.976923077 0.234210526
## 1417 0.120 0.880 zero Group1 381  267  873   9 0.976923077 0.234210526
## 48   0.118 0.882 zero Group1 381  261  879   9 0.976923077 0.228947368
## 457  0.118 0.882 zero Group1 381  261  879   9 0.976923077 0.228947368
## 873  0.118 0.882 zero Group1 381  261  879   9 0.976923077 0.228947368
## 975  0.118 0.882 zero Group1 381  261  879   9 0.976923077 0.228947368
## 1378 0.118 0.882 zero Group1 381  261  879   9 0.976923077 0.228947368
## 1431 0.118 0.882 zero Group1 381  261  879   9 0.976923077 0.228947368
## 41   0.116 0.884 zero Group1 382  256  884   8 0.979487179 0.224561404
## 433  0.116 0.884 zero Group1 382  256  884   8 0.979487179 0.224561404
## 666  0.116 0.884 zero Group1 382  256  884   8 0.979487179 0.224561404
## 684  0.116 0.884 zero Group1 382  256  884   8 0.979487179 0.224561404
## 1113 0.116 0.884 zero Group1 382  256  884   8 0.979487179 0.224561404
## 1269 0.116 0.884  one Group1 382  256  884   8 0.979487179 0.224561404
## 242  0.114 0.886 zero Group1 382  250  890   8 0.979487179 0.219298246
## 453  0.114 0.886 zero Group1 382  250  890   8 0.979487179 0.219298246
## 770  0.114 0.886 zero Group1 382  250  890   8 0.979487179 0.219298246
## 1029 0.114 0.886 zero Group1 382  250  890   8 0.979487179 0.219298246
## 1400 0.114 0.886 zero Group1 382  250  890   8 0.979487179 0.219298246
## 1500 0.114 0.886 zero Group1 382  250  890   8 0.979487179 0.219298246
## 115  0.112 0.888 zero Group1 382  244  896   8 0.979487179 0.214035088
## 139  0.112 0.888 zero Group1 382  244  896   8 0.979487179 0.214035088
## 351  0.112 0.888 zero Group1 382  244  896   8 0.979487179 0.214035088
## 749  0.112 0.888 zero Group1 382  244  896   8 0.979487179 0.214035088
## 1175 0.112 0.888 zero Group1 382  244  896   8 0.979487179 0.214035088
## 1405 0.112 0.888 zero Group1 382  244  896   8 0.979487179 0.214035088
## 169  0.110 0.890 zero Group1 383  238  902   7 0.982051282 0.208771930
## 513  0.110 0.890 zero Group1 383  238  902   7 0.982051282 0.208771930
## 603  0.110 0.890 zero Group1 383  238  902   7 0.982051282 0.208771930
## 678  0.110 0.890 zero Group1 383  238  902   7 0.982051282 0.208771930
## 777  0.110 0.890 zero Group1 383  238  902   7 0.982051282 0.208771930
## 1238 0.110 0.890 zero Group1 383  238  902   7 0.982051282 0.208771930
## 1369 0.110 0.890  one Group1 383  238  902   7 0.982051282 0.208771930
## 142  0.108 0.892 zero Group1 383  237  903   7 0.982051282 0.207894737
## 827  0.106 0.894 zero Group1 384  233  907   6 0.984615385 0.204385965
## 1133 0.106 0.894 zero Group1 384  233  907   6 0.984615385 0.204385965
## 1201 0.106 0.894 zero Group1 384  233  907   6 0.984615385 0.204385965
## 1258 0.106 0.894 zero Group1 384  233  907   6 0.984615385 0.204385965
## 1434 0.106 0.894  one Group1 384  233  907   6 0.984615385 0.204385965
## 825  0.104 0.896 zero Group1 384  228  912   6 0.984615385 0.200000000
## 1281 0.104 0.896 zero Group1 384  228  912   6 0.984615385 0.200000000
## 1287 0.104 0.896 zero Group1 384  228  912   6 0.984615385 0.200000000
## 1496 0.104 0.896 zero Group1 384  228  912   6 0.984615385 0.200000000
## 1497 0.104 0.896 zero Group1 384  228  912   6 0.984615385 0.200000000
## 42   0.102 0.898 zero Group1 384  224  916   6 0.984615385 0.196491228
## 113  0.102 0.898 zero Group1 384  224  916   6 0.984615385 0.196491228
## 118  0.102 0.898 zero Group1 384  224  916   6 0.984615385 0.196491228
## 999  0.102 0.898 zero Group1 384  224  916   6 0.984615385 0.196491228
## 350  0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 750  0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 840  0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 938  0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 1089 0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 1304 0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 1314 0.100 0.900 zero Group1 384  217  923   6 0.984615385 0.190350877
## 116  0.098 0.902 zero Group1 384  212  928   6 0.984615385 0.185964912
## 267  0.098 0.902 zero Group1 384  212  928   6 0.984615385 0.185964912
## 625  0.098 0.902 zero Group1 384  212  928   6 0.984615385 0.185964912
## 775  0.098 0.902 zero Group1 384  212  928   6 0.984615385 0.185964912
## 903  0.098 0.902 zero Group1 384  212  928   6 0.984615385 0.185964912
## 69   0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 187  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 338  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 560  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 658  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 810  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 835  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 866  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 872  0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 1252 0.096 0.904 zero Group1 384  202  938   6 0.984615385 0.177192982
## 167  0.094 0.906 zero Group1 384  198  942   6 0.984615385 0.173684211
## 833  0.094 0.906 zero Group1 384  198  942   6 0.984615385 0.173684211
## 910  0.094 0.906 zero Group1 384  198  942   6 0.984615385 0.173684211
## 970  0.094 0.906 zero Group1 384  198  942   6 0.984615385 0.173684211
## 8    0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 501  0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 724  0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 1086 0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 1181 0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 1199 0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 1363 0.092 0.908  one Group1 386  191  949   4 0.989743590 0.167543860
## 1364 0.092 0.908  one Group1 386  191  949   4 0.989743590 0.167543860
## 1457 0.092 0.908 zero Group1 386  191  949   4 0.989743590 0.167543860
## 64   0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 84   0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 270  0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 353  0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 578  0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 581  0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 704  0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 902  0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 1064 0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 1251 0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 1462 0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 1471 0.090 0.910 zero Group1 386  179  961   4 0.989743590 0.157017544
## 16   0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 71   0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 119  0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 280  0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 450  0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 649  0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 650  0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 735  0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 1059 0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 1112 0.088 0.912 zero Group1 386  169  971   4 0.989743590 0.148245614
## 173  0.086 0.914 zero Group1 388  165  975   2 0.994871795 0.144736842
## 550  0.086 0.914 zero Group1 388  165  975   2 0.994871795 0.144736842
## 616  0.086 0.914  one Group1 388  165  975   2 0.994871795 0.144736842
## 1067 0.086 0.914 zero Group1 388  165  975   2 0.994871795 0.144736842
## 1300 0.086 0.914  one Group1 388  165  975   2 0.994871795 0.144736842
## 1418 0.086 0.914 zero Group1 388  165  975   2 0.994871795 0.144736842
## 135  0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 443  0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 553  0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 583  0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 891  0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 1090 0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 1216 0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 1276 0.084 0.916 zero Group1 388  157  983   2 0.994871795 0.137719298
## 327  0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 355  0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 455  0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 456  0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 751  0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 1205 0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 1345 0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 1458 0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 1460 0.082 0.918 zero Group1 388  148  992   2 0.994871795 0.129824561
## 522  0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 526  0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 743  0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 774  0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 916  0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 962  0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 1213 0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 1273 0.080 0.920 zero Group1 388  140 1000   2 0.994871795 0.122807018
## 190  0.078 0.922 zero Group1 388  135 1005   2 0.994871795 0.118421053
## 239  0.078 0.922 zero Group1 388  135 1005   2 0.994871795 0.118421053
## 1131 0.078 0.922 zero Group1 388  135 1005   2 0.994871795 0.118421053
## 1218 0.078 0.922 zero Group1 388  135 1005   2 0.994871795 0.118421053
## 1383 0.078 0.922 zero Group1 388  135 1005   2 0.994871795 0.118421053
## 75   0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 99   0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 531  0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 913  0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 1147 0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 1161 0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 1402 0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 1426 0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 1463 0.076 0.924 zero Group1 388  126 1014   2 0.994871795 0.110526316
## 143  0.074 0.926 zero Group1 388  122 1018   2 0.994871795 0.107017544
## 985  0.074 0.926 zero Group1 388  122 1018   2 0.994871795 0.107017544
## 1146 0.074 0.926 zero Group1 388  122 1018   2 0.994871795 0.107017544
## 1478 0.074 0.926 zero Group1 388  122 1018   2 0.994871795 0.107017544
## 155  0.072 0.928 zero Group1 388  116 1024   2 0.994871795 0.101754386
## 626  0.072 0.928 zero Group1 388  116 1024   2 0.994871795 0.101754386
## 721  0.072 0.928 zero Group1 388  116 1024   2 0.994871795 0.101754386
## 918  0.072 0.928 zero Group1 388  116 1024   2 0.994871795 0.101754386
## 1231 0.072 0.928 zero Group1 388  116 1024   2 0.994871795 0.101754386
## 1329 0.072 0.928 zero Group1 388  116 1024   2 0.994871795 0.101754386
## 34   0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 76   0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 144  0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 415  0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 473  0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 519  0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 604  0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 1184 0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 1423 0.070 0.930 zero Group1 388  107 1033   2 0.994871795 0.093859649
## 181  0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 329  0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 834  0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 941  0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 998  0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 1003 0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 1132 0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 1382 0.068 0.932 zero Group1 388   99 1041   2 0.994871795 0.086842105
## 26   0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 418  0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 820  0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 844  0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 845  0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 1088 0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 1357 0.066 0.934 zero Group1 388   92 1048   2 0.994871795 0.080701754
## 96   0.064 0.936 zero Group1 388   88 1052   2 0.994871795 0.077192982
## 379  0.064 0.936 zero Group1 388   88 1052   2 0.994871795 0.077192982
## 478  0.064 0.936 zero Group1 388   88 1052   2 0.994871795 0.077192982
## 686  0.064 0.936 zero Group1 388   88 1052   2 0.994871795 0.077192982
## 12   0.062 0.938 zero Group1 388   83 1057   2 0.994871795 0.072807018
## 59   0.062 0.938 zero Group1 388   83 1057   2 0.994871795 0.072807018
## 138  0.062 0.938 zero Group1 388   83 1057   2 0.994871795 0.072807018
## 172  0.062 0.938 zero Group1 388   83 1057   2 0.994871795 0.072807018
## 1353 0.062 0.938 zero Group1 388   83 1057   2 0.994871795 0.072807018
## 637  0.060 0.940  one Group1 389   80 1060   1 0.997435897 0.070175439
## 801  0.060 0.940 zero Group1 389   80 1060   1 0.997435897 0.070175439
## 1134 0.060 0.940 zero Group1 389   80 1060   1 0.997435897 0.070175439
## 1386 0.060 0.940 zero Group1 389   80 1060   1 0.997435897 0.070175439
## 140  0.058 0.942 zero Group1 389   74 1066   1 0.997435897 0.064912281
## 430  0.058 0.942 zero Group1 389   74 1066   1 0.997435897 0.064912281
## 703  0.058 0.942 zero Group1 389   74 1066   1 0.997435897 0.064912281
## 764  0.058 0.942 zero Group1 389   74 1066   1 0.997435897 0.064912281
## 909  0.058 0.942 zero Group1 389   74 1066   1 0.997435897 0.064912281
## 1323 0.058 0.942 zero Group1 389   74 1066   1 0.997435897 0.064912281
## 772  0.056 0.944 zero Group1 390   71 1069   0 1.000000000 0.062280702
## 1109 0.056 0.944 zero Group1 390   71 1069   0 1.000000000 0.062280702
## 1268 0.056 0.944  one Group1 390   71 1069   0 1.000000000 0.062280702
## 1503 0.056 0.944 zero Group1 390   71 1069   0 1.000000000 0.062280702
## 492  0.054 0.946 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 562  0.054 0.946 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 661  0.054 0.946 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 77   0.052 0.948 zero Group1 390   66 1074   0 1.000000000 0.057894737
## 401  0.052 0.948 zero Group1 390   66 1074   0 1.000000000 0.057894737
## 78   0.050 0.950 zero Group1 390   61 1079   0 1.000000000 0.053508772
## 340  0.050 0.950 zero Group1 390   61 1079   0 1.000000000 0.053508772
## 1045 0.050 0.950 zero Group1 390   61 1079   0 1.000000000 0.053508772
## 1143 0.050 0.950 zero Group1 390   61 1079   0 1.000000000 0.053508772
## 1484 0.050 0.950 zero Group1 390   61 1079   0 1.000000000 0.053508772
## 97   0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 454  0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 514  0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 752  0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 871  0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 1189 0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 1206 0.048 0.952 zero Group1 390   54 1086   0 1.000000000 0.047368421
## 18   0.046 0.954 zero Group1 390   50 1090   0 1.000000000 0.043859649
## 818  0.046 0.954 zero Group1 390   50 1090   0 1.000000000 0.043859649
## 1244 0.046 0.954 zero Group1 390   50 1090   0 1.000000000 0.043859649
## 1327 0.046 0.954 zero Group1 390   50 1090   0 1.000000000 0.043859649
## 134  0.044 0.956 zero Group1 390   48 1092   0 1.000000000 0.042105263
## 185  0.044 0.956 zero Group1 390   48 1092   0 1.000000000 0.042105263
## 161  0.042 0.958 zero Group1 390   44 1096   0 1.000000000 0.038596491
## 480  0.042 0.958 zero Group1 390   44 1096   0 1.000000000 0.038596491
## 529  0.042 0.958 zero Group1 390   44 1096   0 1.000000000 0.038596491
## 1385 0.042 0.958 zero Group1 390   44 1096   0 1.000000000 0.038596491
## 32   0.040 0.960 zero Group1 390   39 1101   0 1.000000000 0.034210526
## 282  0.040 0.960 zero Group1 390   39 1101   0 1.000000000 0.034210526
## 490  0.040 0.960 zero Group1 390   39 1101   0 1.000000000 0.034210526
## 491  0.040 0.960 zero Group1 390   39 1101   0 1.000000000 0.034210526
## 700  0.040 0.960 zero Group1 390   39 1101   0 1.000000000 0.034210526
## 14   0.038 0.962 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 19   0.038 0.962 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 534  0.038 0.962 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1529 0.038 0.962 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 311  0.034 0.966 zero Group1 390   30 1110   0 1.000000000 0.026315789
## 502  0.034 0.966 zero Group1 390   30 1110   0 1.000000000 0.026315789
## 1236 0.034 0.966 zero Group1 390   30 1110   0 1.000000000 0.026315789
## 1241 0.034 0.966 zero Group1 390   30 1110   0 1.000000000 0.026315789
## 1501 0.034 0.966 zero Group1 390   30 1110   0 1.000000000 0.026315789
## 108  0.032 0.968 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 1129 0.032 0.968 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 1356 0.032 0.968 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 1410 0.032 0.968 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 1425 0.032 0.968 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 698  0.030 0.970 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 1037 0.030 0.970 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 1360 0.030 0.970 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 82   0.028 0.972 zero Group1 390   19 1121   0 1.000000000 0.016666667
## 1110 0.028 0.972 zero Group1 390   19 1121   0 1.000000000 0.016666667
## 1237 0.028 0.972 zero Group1 390   19 1121   0 1.000000000 0.016666667
## 1186 0.026 0.974 zero Group1 390   18 1122   0 1.000000000 0.015789474
## 434  0.024 0.976 zero Group1 390   14 1126   0 1.000000000 0.012280702
## 530  0.024 0.976 zero Group1 390   14 1126   0 1.000000000 0.012280702
## 533  0.024 0.976 zero Group1 390   14 1126   0 1.000000000 0.012280702
## 1401 0.024 0.976 zero Group1 390   14 1126   0 1.000000000 0.012280702
## 476  0.022 0.978 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 556  0.022 0.978 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1347 0.022 0.978 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1414 0.022 0.978 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1070 0.020 0.980 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 380  0.018 0.982 zero Group1 390    7 1133   0 1.000000000 0.006140351
## 1036 0.018 0.982 zero Group1 390    7 1133   0 1.000000000 0.006140351
## 1240 0.016 0.984 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 1502 0.014 0.986 zero Group1 390    5 1135   0 1.000000000 0.004385965
## 31   0.012 0.988 zero Group1 390    3 1137   0 1.000000000 0.002631579
## 356  0.012 0.988 zero Group1 390    3 1137   0 1.000000000 0.002631579
## 210  0.008 0.992 zero Group1 390    1 1139   0 1.000000000 0.000877193
## 1278 0.008 0.992 zero Group1 390    1 1139   0 1.000000000 0.000877193
## 602  0.006 0.994 zero Group1 390    0 1140   0 1.000000000 0.000000000
##      Informedness      PREC       NPV       MARK          F1         MCC
## 1103 -0.000877193 0.0000000 0.7449313 -0.2550687 0.000000000 -0.01495809
## 1338  0.001686910 0.5000000 0.7454188  0.2454188 0.005102041  0.02034698
## 878   0.004251012 0.6666667 0.7459070  0.4125737 0.010178117  0.04187906
## 1270  0.006815115 0.7500000 0.7463958  0.4963958 0.015228426  0.05816351
## 1047  0.009379217 0.8000000 0.7468852  0.5468852 0.020253165  0.07161952
## 1325  0.008502024 0.6666667 0.7467192  0.4133858 0.020202020  0.05928420
## 1027  0.011066127 0.7142857 0.7472095  0.4614952 0.025188917  0.07146303
## 122   0.013630229 0.7500000 0.7477004  0.4977004 0.030150754  0.08236365
## 563   0.018758435 0.8000000 0.7486842  0.5486842 0.040000000  0.10145175
## 1024  0.018758435 0.8000000 0.7486842  0.5486842 0.040000000  0.10145175
## 808   0.021322537 0.8181818 0.7491771  0.5673589 0.044887781  0.10998878
## 1367  0.023886640 0.8333333 0.7496706  0.5830040 0.049751244  0.11800850
## 936   0.026450742 0.8461538 0.7501648  0.5963186 0.054590571  0.12559089
## 79    0.029014845 0.8571429 0.7506596  0.6078025 0.059405941  0.13279795
## 883   0.031578947 0.8666667 0.7511551  0.6178218 0.064197531  0.13967878
## 158   0.033265857 0.8235294 0.7514871  0.5750165 0.068796069  0.13830552
## 1021  0.033265857 0.8235294 0.7514871  0.5750165 0.068796069  0.13830552
## 129   0.035829960 0.8333333 0.7519841  0.5853175 0.073529412  0.14481678
## 907   0.034952767 0.7894737 0.7518200  0.5412937 0.073349633  0.13754894
## 1106  0.036639676 0.7619048 0.7521537  0.5140585 0.077858881  0.13724044
## 1515  0.036639676 0.7619048 0.7521537  0.5140585 0.077858881  0.13724044
## 1198  0.039203779 0.7727273 0.7526525  0.5253798 0.082524272  0.14351611
## 221   0.041767881 0.7826087 0.7531520  0.5357607 0.087167070  0.14959140
## 783   0.044331984 0.7916667 0.7536521  0.5453187 0.091787440  0.15548331
## 1507  0.046896086 0.8000000 0.7541528  0.5541528 0.096385542  0.16120670
## 564   0.049460189 0.8076923 0.7546543  0.5623466 0.100961538  0.16677460
## 81    0.054588394 0.8214286 0.7556591  0.5770877 0.110047847  0.17748885
## 123   0.054588394 0.8214286 0.7556591  0.5770877 0.110047847  0.17748885
## 441   0.055398111 0.7741935 0.7558372  0.5300308 0.114014252  0.17135549
## 887   0.055398111 0.7741935 0.7558372  0.5300308 0.114014252  0.17135549
## 1395  0.055398111 0.7741935 0.7558372  0.5300308 0.114014252  0.17135549
## 389   0.060526316 0.7878788 0.7568470  0.5447258 0.122931442  0.18157711
## 439   0.060526316 0.7878788 0.7568470  0.5447258 0.122931442  0.18157711
## 1155  0.065654521 0.8000000 0.7578595  0.5578595 0.131764706  0.19137921
## 1370  0.065654521 0.8000000 0.7578595  0.5578595 0.131764706  0.19137921
## 460   0.068218623 0.8055556 0.7583668  0.5639224 0.136150235  0.19613772
## 651   0.069905533 0.7894737 0.7587131  0.5481868 0.140186916  0.19575825
## 786   0.069905533 0.7894737 0.7587131  0.5481868 0.140186916  0.19575825
## 1368  0.072469636 0.7948718 0.7592220  0.5540938 0.144522145  0.20038706
## 656   0.074156545 0.7804878 0.7595702  0.5400580 0.148491879  0.20012205
## 1333  0.074156545 0.7804878 0.7595702  0.5400580 0.148491879  0.20012205
## 908   0.076720648 0.7857143 0.7600806  0.5457949 0.152777778  0.20463074
## 219   0.079284750 0.7906977 0.7605918  0.5512895 0.157043880  0.20906661
## 195   0.081848853 0.7954545 0.7611036  0.5565582 0.161290323  0.21343301
## 264   0.083535762 0.7826087 0.7614555  0.5440642 0.165137615  0.21318729
## 1289  0.083535762 0.7826087 0.7614555  0.5440642 0.165137615  0.21318729
## 52    0.089473684 0.7647059 0.7626775  0.5273834 0.176870748  0.21722553
## 226   0.089473684 0.7647059 0.7626775  0.5273834 0.176870748  0.21722553
## 468   0.089473684 0.7647059 0.7626775  0.5273834 0.176870748  0.21722553
## 822   0.089473684 0.7647059 0.7626775  0.5273834 0.176870748  0.21722553
## 1096  0.089473684 0.7647059 0.7626775  0.5273834 0.176870748  0.21722553
## 1294  0.094601889 0.7735849 0.7637102  0.5372951 0.185101580  0.22545318
## 1436  0.094601889 0.7735849 0.7637102  0.5372951 0.185101580  0.22545318
## 569   0.095411606 0.7500000 0.7639077  0.5139077 0.188340807  0.22143343
## 900   0.095411606 0.7500000 0.7639077  0.5139077 0.188340807  0.22143343
## 1420  0.095411606 0.7500000 0.7639077  0.5139077 0.188340807  0.22143343
## 567   0.100539811 0.7586207 0.7649457  0.5235663 0.196428571  0.22943248
## 645   0.100539811 0.7586207 0.7649457  0.5235663 0.196428571  0.22943248
## 715   0.103103914 0.7627119 0.7654657  0.5281775 0.200445434  0.23336060
## 365   0.110796221 0.7741935 0.7670300  0.5412235 0.212389381  0.24487858
## 566   0.110796221 0.7741935 0.7670300  0.5412235 0.212389381  0.24487858
## 1343  0.110796221 0.7741935 0.7670300  0.5412235 0.212389381  0.24487858
## 538   0.115047233 0.7692308 0.7679181  0.5371489 0.219780220  0.24859101
## 942   0.115047233 0.7692308 0.7679181  0.5371489 0.219780220  0.24859101
## 1295  0.115047233 0.7692308 0.7679181  0.5371489 0.219780220  0.24859101
## 409   0.116734143 0.7611940 0.7682843  0.5294784 0.223194748  0.24861256
## 1448  0.116734143 0.7611940 0.7682843  0.5294784 0.223194748  0.24861256
## 892   0.120985155 0.7571429 0.7691781  0.5263209 0.230434783  0.25234306
## 1026  0.120985155 0.7571429 0.7691781  0.5263209 0.230434783  0.25234306
## 1121  0.120985155 0.7571429 0.7691781  0.5263209 0.230434783  0.25234306
## 224   0.123549258 0.7605634 0.7697053  0.5302687 0.234273319  0.25595761
## 462   0.128677463 0.7671233 0.7707618  0.5378851 0.241900648  0.26308495
## 809   0.128677463 0.7671233 0.7707618  0.5378851 0.241900648  0.26308495
## 198   0.134615385 0.7564103 0.7720386  0.5284488 0.252136752  0.26671584
## 330   0.134615385 0.7564103 0.7720386  0.5284488 0.252136752  0.26671584
## 930   0.134615385 0.7564103 0.7720386  0.5284488 0.252136752  0.26671584
## 1227  0.134615385 0.7564103 0.7720386  0.5284488 0.252136752  0.26671584
## 1517  0.134615385 0.7564103 0.7720386  0.5284488 0.252136752  0.26671584
## 754   0.136302294 0.7500000 0.7724138  0.5224138 0.255319149  0.26684490
## 1079  0.136302294 0.7500000 0.7724138  0.5224138 0.255319149  0.26684490
## 539   0.138866397 0.7530864 0.7729469  0.5260333 0.259023355  0.27027458
## 1224  0.141430499 0.7560976 0.7734807  0.5295782 0.262711864  0.27367593
## 1447  0.143994602 0.7590361 0.7740152  0.5330513 0.266384778  0.27704966
## 1197  0.146558704 0.7619048 0.7745505  0.5364552 0.270042194  0.28039648
## 1091  0.148245614 0.7558140 0.7749307  0.5307447 0.273109244  0.28050058
## 1445  0.148245614 0.7558140 0.7749307  0.5307447 0.273109244  0.28050058
## 660   0.146491228 0.7386364 0.7746186  0.5132549 0.271966527  0.27420311
## 756   0.146491228 0.7386364 0.7746186  0.5132549 0.271966527  0.27420311
## 614   0.151619433 0.7444444 0.7756944  0.5201389 0.279166667  0.28082586
## 1008  0.151619433 0.7444444 0.7756944  0.5201389 0.279166667  0.28082586
## 769   0.152429150 0.7311828 0.7759221  0.5071049 0.281573499  0.27802439
## 1101  0.152429150 0.7311828 0.7759221  0.5071049 0.281573499  0.27802439
## 1470  0.152429150 0.7311828 0.7759221  0.5071049 0.281573499  0.27802439
## 1455  0.151551957 0.7234043 0.7757660  0.4991703 0.280991736  0.27504587
## 1464  0.153238866 0.7187500 0.7761506  0.4949006 0.283950617  0.27538702
## 1506  0.153238866 0.7187500 0.7761506  0.4949006 0.283950617  0.27538702
## 321   0.158367072 0.7244898 0.7772346  0.5017244 0.290983607  0.28188052
## 855   0.158367072 0.7244898 0.7772346  0.5017244 0.290983607  0.28188052
## 196   0.160931174 0.7272727 0.7777778  0.5050505 0.294478528  0.28509362
## 326   0.161740891 0.7156863 0.7780112  0.4936975 0.296747967  0.28257932
## 549   0.161740891 0.7156863 0.7780112  0.4936975 0.296747967  0.28257932
## 738   0.161740891 0.7156863 0.7780112  0.4936975 0.296747967  0.28257932
## 466   0.164304993 0.7184466 0.7785564  0.4970030 0.300202840  0.28576227
## 126   0.168556005 0.7169811 0.7794944  0.4964755 0.306451613  0.28928175
## 714   0.168556005 0.7169811 0.7794944  0.4964755 0.306451613  0.28928175
## 1489  0.168556005 0.7169811 0.7794944  0.4964755 0.306451613  0.28928175
## 1138  0.167678812 0.7102804 0.7793394  0.4896198 0.305835010  0.28652900
## 1051  0.170242915 0.7129630 0.7798875  0.4928504 0.309236948  0.28966238
## 149   0.174493927 0.7117117 0.7808316  0.4925433 0.315369261  0.29316516
## 309   0.174493927 0.7117117 0.7808316  0.4925433 0.315369261  0.29316516
## 955   0.174493927 0.7117117 0.7808316  0.4925433 0.315369261  0.29316516
## 318   0.175303644 0.7017544 0.7810734  0.4828278 0.317460317  0.29093209
## 410   0.175303644 0.7017544 0.7810734  0.4828278 0.317460317  0.29093209
## 683   0.175303644 0.7017544 0.7810734  0.4828278 0.317460317  0.29093209
## 1226  0.176990553 0.6982759 0.7814710  0.4797469 0.320158103  0.29139434
## 1274  0.176990553 0.6982759 0.7814710  0.4797469 0.320158103  0.29139434
## 906   0.176113360 0.6923077 0.7813163  0.4736240 0.319526627  0.28881053
## 989   0.174358974 0.6806723 0.7810064  0.4616786 0.318271120  0.28372137
## 1312  0.174358974 0.6806723 0.7810064  0.4616786 0.318271120  0.28372137
## 331   0.171727395 0.6639344 0.7805398  0.4444742 0.316406250  0.27627594
## 668   0.171727395 0.6639344 0.7805398  0.4444742 0.316406250  0.27627594
## 960   0.171727395 0.6639344 0.7805398  0.4444742 0.316406250  0.27627594
## 110   0.175978408 0.6640000 0.7814947  0.4454947 0.322330097  0.27999543
## 543   0.175978408 0.6640000 0.7814947  0.4454947 0.322330097  0.27999543
## 606   0.175978408 0.6640000 0.7814947  0.4454947 0.322330097  0.27999543
## 1302  0.178542510 0.6666667 0.7820513  0.4487179 0.325581395  0.28304634
## 572   0.181106613 0.6692913 0.7826087  0.4519000 0.328820116  0.28608056
## 3     0.181039136 0.6564885 0.7827019  0.4391905 0.330134357  0.28197636
## 796   0.181039136 0.6564885 0.7827019  0.4391905 0.330134357  0.28197636
## 958   0.181039136 0.6564885 0.7827019  0.4391905 0.330134357  0.28197636
## 1508  0.181039136 0.6564885 0.7827019  0.4391905 0.330134357  0.28197636
## 114   0.177530364 0.6370370 0.7820789  0.4191159 0.327619048  0.27277426
## 1031  0.177530364 0.6370370 0.7820789  0.4191159 0.327619048  0.27277426
## 1137  0.177530364 0.6370370 0.7820789  0.4191159 0.327619048  0.27277426
## 1490  0.177530364 0.6370370 0.7820789  0.4191159 0.327619048  0.27277426
## 426   0.181781377 0.6376812 0.7830460  0.4207271 0.333333333  0.27655082
## 465   0.181781377 0.6376812 0.7830460  0.4207271 0.333333333  0.27655082
## 781   0.181781377 0.6376812 0.7830460  0.4207271 0.333333333  0.27655082
## 9     0.180026991 0.6285714 0.7827338  0.4113052 0.332075472  0.27211403
## 927   0.180026991 0.6285714 0.7827338  0.4113052 0.332075472  0.27211403
## 147   0.187719298 0.6363636 0.7844268  0.4207905 0.341463415  0.28105247
## 851   0.187719298 0.6363636 0.7844268  0.4207905 0.341463415  0.28105247
## 1228  0.187719298 0.6363636 0.7844268  0.4207905 0.341463415  0.28105247
## 788   0.190283401 0.6388889 0.7849928  0.4238817 0.344569288  0.28400290
## 1513  0.192847503 0.6413793 0.7855596  0.4269389 0.347663551  0.28693919
## 112   0.191970310 0.6369863 0.7854046  0.4223909 0.347014925  0.28475694
## 1120  0.193657220 0.6351351 0.7858177  0.4209528 0.349442379  0.28551803
## 1230  0.193657220 0.6351351 0.7858177  0.4209528 0.349442379  0.28551803
## 58    0.195344130 0.6333333 0.7862319  0.4195652 0.351851852  0.28628587
## 322   0.195344130 0.6333333 0.7862319  0.4195652 0.351851852  0.28628587
## 23    0.196153846 0.6274510 0.7864924  0.4139434 0.353591160  0.28495014
## 205   0.196153846 0.6274510 0.7864924  0.4139434 0.353591160  0.28495014
## 1444  0.196153846 0.6274510 0.7864924  0.4139434 0.353591160  0.28495014
## 36    0.202968961 0.6305732 0.7880554  0.4186286 0.361974406  0.29149376
## 947   0.202968961 0.6305732 0.7880554  0.4186286 0.361974406  0.29149376
## 1116  0.202968961 0.6305732 0.7880554  0.4186286 0.361974406  0.29149376
## 1433  0.202968961 0.6305732 0.7880554  0.4186286 0.361974406  0.29149376
## 220   0.218353576 0.6441718 0.7915143  0.4356860 0.379746835  0.30843736
## 395   0.218353576 0.6441718 0.7915143  0.4356860 0.379746835  0.30843736
## 642   0.218353576 0.6441718 0.7915143  0.4356860 0.379746835  0.30843736
## 856   0.218353576 0.6441718 0.7915143  0.4356860 0.379746835  0.30843736
## 1009  0.218353576 0.6441718 0.7915143  0.4356860 0.379746835  0.30843736
## 1117  0.218353576 0.6441718 0.7915143  0.4356860 0.379746835  0.30843736
## 63    0.220850202 0.6369048 0.7922173  0.4291221 0.383512545  0.30785013
## 358   0.220850202 0.6369048 0.7922173  0.4291221 0.383512545  0.30785013
## 617   0.220850202 0.6369048 0.7922173  0.4291221 0.383512545  0.30785013
## 784   0.220850202 0.6369048 0.7922173  0.4291221 0.383512545  0.30785013
## 1372  0.220850202 0.6369048 0.7922173  0.4291221 0.383512545  0.30785013
## 706   0.225978408 0.6411765 0.7933824  0.4345588 0.389285714  0.31337025
## 717   0.225978408 0.6411765 0.7933824  0.4345588 0.389285714  0.31337025
## 570   0.232793522 0.6436782 0.7949853  0.4386634 0.397163121  0.31955907
## 725   0.232793522 0.6436782 0.7949853  0.4386634 0.397163121  0.31955907
## 779   0.232793522 0.6436782 0.7949853  0.4386634 0.397163121  0.31955907
## 1509  0.232793522 0.6436782 0.7949853  0.4386634 0.397163121  0.31955907
## 121   0.245614035 0.6536313 0.7979275  0.4515587 0.411247803  0.33303028
## 124   0.245614035 0.6536313 0.7979275  0.4515587 0.411247803  0.33303028
## 299   0.245614035 0.6536313 0.7979275  0.4515587 0.411247803  0.33303028
## 789   0.245614035 0.6536313 0.7979275  0.4515587 0.411247803  0.33303028
## 1443  0.245614035 0.6536313 0.7979275  0.4515587 0.411247803  0.33303028
## 1081  0.250742240 0.6574586 0.7991105  0.4565690 0.416812609  0.33835061
## 1511  0.250742240 0.6574586 0.7991105  0.4565690 0.416812609  0.33835061
## 1321  0.249865047 0.6538462 0.7989614  0.4528076 0.416083916  0.33636407
## 102   0.248987854 0.6502732 0.7988122  0.4490854 0.415357766  0.33439021
## 215   0.248110661 0.6467391 0.7986627  0.4454018 0.414634146  0.33242886
## 727   0.246356275 0.6397849 0.7983631  0.4381480 0.413194444  0.32854303
## 1107  0.246356275 0.6397849 0.7983631  0.4381480 0.413194444  0.32854303
## 94    0.247165992 0.6349206 0.7986577  0.4335784 0.414507772  0.32736192
## 464   0.247165992 0.6349206 0.7986577  0.4335784 0.414507772  0.32736192
## 1259  0.247165992 0.6349206 0.7986577  0.4335784 0.414507772  0.32736192
## 411   0.251417004 0.6354167 0.7997010  0.4351177 0.419243986  0.33075065
## 470   0.251417004 0.6354167 0.7997010  0.4351177 0.419243986  0.33075065
## 1094  0.251417004 0.6354167 0.7997010  0.4351177 0.419243986  0.33075065
## 945   0.253981107 0.6373057 0.8002992  0.4376049 0.421955403  0.33338172
## 500   0.252226721 0.6307692 0.8000000  0.4307692 0.420512821  0.32962329
## 1381  0.252226721 0.6307692 0.8000000  0.4307692 0.420512821  0.32962329
## 209   0.253913630 0.6294416 0.8004501  0.4298917 0.422487223  0.33038670
## 1223  0.253913630 0.6294416 0.8004501  0.4298917 0.422487223  0.33038670
## 95    0.254723347 0.6250000 0.8007519  0.4257519 0.423728814  0.32931587
## 308   0.254723347 0.6250000 0.8007519  0.4257519 0.423728814  0.32931587
## 925   0.254723347 0.6250000 0.8007519  0.4257519 0.423728814  0.32931587
## 674   0.253778677 0.6146341 0.8007547  0.4153889 0.423529412  0.32467959
## 744   0.253778677 0.6146341 0.8007547  0.4153889 0.423529412  0.32467959
## 990   0.253778677 0.6146341 0.8007547  0.4153889 0.423529412  0.32467959
## 1262  0.253778677 0.6146341 0.8007547  0.4153889 0.423529412  0.32467959
## 1514  0.253778677 0.6146341 0.8007547  0.4153889 0.423529412  0.32467959
## 705   0.256342780 0.6165049 0.8013595  0.4178644 0.426174497  0.32728659
## 687   0.265721997 0.6208531 0.8036391  0.4244922 0.435940100  0.33585252
## 877   0.265721997 0.6208531 0.8036391  0.4244922 0.435940100  0.33585252
## 1006  0.265721997 0.6208531 0.8036391  0.4244922 0.435940100  0.33585252
## 1082  0.265721997 0.6208531 0.8036391  0.4244922 0.435940100  0.33585252
## 1292  0.265721997 0.6208531 0.8036391  0.4244922 0.435940100  0.33585252
## 622   0.269095816 0.6186047 0.8045627  0.4231674 0.439669421  0.33745011
## 839   0.269095816 0.6186047 0.8045627  0.4231674 0.439669421  0.33745011
## 879   0.269095816 0.6186047 0.8045627  0.4231674 0.439669421  0.33745011
## 1341  0.269095816 0.6186047 0.8045627  0.4231674 0.439669421  0.33745011
## 85    0.271592443 0.6136364 0.8053435  0.4189799 0.442622951  0.33733035
## 294   0.271592443 0.6136364 0.8053435  0.4189799 0.442622951  0.33733035
## 816   0.271592443 0.6136364 0.8053435  0.4189799 0.442622951  0.33733035
## 1388  0.271592443 0.6136364 0.8053435  0.4189799 0.442622951  0.33733035
## 1407  0.271592443 0.6136364 0.8053435  0.4189799 0.442622951  0.33733035
## 100   0.272402159 0.6098655 0.8056618  0.4155273 0.443719413  0.33643801
## 518   0.272402159 0.6098655 0.8056618  0.4155273 0.443719413  0.33643801
## 946   0.272402159 0.6098655 0.8056618  0.4155273 0.443719413  0.33643801
## 157   0.274089069 0.6088889 0.8061303  0.4150192 0.445528455  0.33727172
## 197   0.274089069 0.6088889 0.8061303  0.4150192 0.445528455  0.33727172
## 952   0.275775978 0.6079295 0.8066002  0.4145297 0.447325770  0.33810845
## 994   0.275775978 0.6079295 0.8066002  0.4145297 0.447325770  0.33810845
## 324   0.278272605 0.6034483 0.8073960  0.4108443 0.450160772  0.33812232
## 521   0.278272605 0.6034483 0.8073960  0.4108443 0.450160772  0.33812232
## 541   0.278272605 0.6034483 0.8073960  0.4108443 0.450160772  0.33812232
## 594   0.278272605 0.6034483 0.8073960  0.4108443 0.450160772  0.33812232
## 760   0.278272605 0.6034483 0.8073960  0.4108443 0.450160772  0.33812232
## 291   0.280836707 0.6051502 0.8080185  0.4131687 0.452648475  0.34063609
## 404   0.280769231 0.5991561 0.8081980  0.4073541 0.452950558  0.33819003
## 427   0.280769231 0.5991561 0.8081980  0.4073541 0.452950558  0.33819003
## 899   0.280769231 0.5991561 0.8081980  0.4073541 0.452950558  0.33819003
## 1362  0.280769231 0.5991561 0.8081980  0.4073541 0.452950558  0.33819003
## 897   0.282456140 0.5983264 0.8086754  0.4070018 0.454689984  0.33905775
## 1342  0.282456140 0.5983264 0.8086754  0.4070018 0.454689984  0.33905775
## 13    0.284143050 0.5975104 0.8091544  0.4066648 0.456418384  0.33992788
## 607   0.284143050 0.5975104 0.8091544  0.4066648 0.456418384  0.33992788
## 1007  0.286707152 0.5991736 0.8097826  0.4089562 0.458860759  0.34241883
## 588   0.286639676 0.5934959 0.8099688  0.4034648 0.459119497  0.34007207
## 967   0.286639676 0.5934959 0.8099688  0.4034648 0.459119497  0.34007207
## 1250  0.286639676 0.5934959 0.8099688  0.4034648 0.459119497  0.34007207
## 1439  0.286639676 0.5934959 0.8099688  0.4034648 0.459119497  0.34007207
## 720   0.288326586 0.5927419 0.8104524  0.4031944 0.460815047  0.34095696
## 859   0.288326586 0.5927419 0.8104524  0.4031944 0.460815047  0.34095696
## 360   0.290013495 0.5920000 0.8109375  0.4029375 0.462500000  0.34184399
## 719   0.290013495 0.5920000 0.8109375  0.4029375 0.462500000  0.34184399
## 213   0.295074224 0.5898438 0.8124019  0.4022456 0.467492260  0.34451752
## 296   0.295074224 0.5898438 0.8124019  0.4022456 0.467492260  0.34451752
## 304   0.295074224 0.5898438 0.8124019  0.4022456 0.467492260  0.34451752
## 482   0.295074224 0.5898438 0.8124019  0.4022456 0.467492260  0.34451752
## 932   0.295074224 0.5898438 0.8124019  0.4022456 0.467492260  0.34451752
## 1025  0.295074224 0.5898438 0.8124019  0.4022456 0.467492260  0.34451752
## 675   0.295006748 0.5846154 0.8125984  0.3972138 0.467692308  0.34231675
## 753   0.295006748 0.5846154 0.8125984  0.3972138 0.467692308  0.34231675
## 1010  0.295006748 0.5846154 0.8125984  0.3972138 0.467692308  0.34231675
## 1033  0.295006748 0.5846154 0.8125984  0.3972138 0.467692308  0.34231675
## 127   0.298380567 0.5833333 0.8135861  0.3969194 0.470948012  0.34414102
## 644   0.298380567 0.5833333 0.8135861  0.3969194 0.470948012  0.34414102
## 929   0.298380567 0.5833333 0.8135861  0.3969194 0.470948012  0.34414102
## 1221  0.298380567 0.5833333 0.8135861  0.3969194 0.470948012  0.34414102
## 486   0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 634   0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 681   0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 815   0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 1052  0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 1248  0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 1409  0.306005398 0.5830258 0.8157268  0.3987526 0.478063540  0.34931425
## 950   0.308569501 0.5845588 0.8163752  0.4009340 0.480362538  0.35173287
## 1438  0.313697706 0.5875912 0.8176752  0.4052664 0.484939759  0.35655454
## 1441  0.313697706 0.5875912 0.8176752  0.4052664 0.484939759  0.35655454
## 787   0.311066127 0.5812274 0.8172386  0.3984661 0.482758621  0.35206433
## 1004  0.311066127 0.5812274 0.8172386  0.3984661 0.482758621  0.35206433
## 1380  0.311066127 0.5812274 0.8172386  0.3984661 0.482758621  0.35206433
## 1437  0.313630229 0.5827338 0.8178914  0.4006252 0.485029940  0.35446886
## 403   0.310998650 0.5765125 0.8174540  0.3939664 0.482861401  0.35003289
## 596   0.310998650 0.5765125 0.8174540  0.3939664 0.482861401  0.35003289
## 1055  0.310998650 0.5765125 0.8174540  0.3939664 0.482861401  0.35003289
## 782   0.313562753 0.5780142 0.8181090  0.3961232 0.485119048  0.35243364
## 475   0.310931174 0.5719298 0.8176707  0.3896005 0.482962963  0.34805020
## 1282  0.310931174 0.5719298 0.8176707  0.3896005 0.482962963  0.34805020
## 1315  0.310931174 0.5719298 0.8176707  0.3896005 0.482962963  0.34805020
## 43    0.311740891 0.5694444 0.8180354  0.3874799 0.483775811  0.34755333
## 111   0.311740891 0.5694444 0.8180354  0.3874799 0.483775811  0.34755333
## 1505  0.311740891 0.5694444 0.8180354  0.3874799 0.483775811  0.34755333
## 392   0.320242915 0.5714286 0.8203883  0.3918169 0.491228070  0.35422675
## 643   0.320242915 0.5714286 0.8203883  0.3918169 0.491228070  0.35422675
## 852   0.320242915 0.5714286 0.8203883  0.3918169 0.491228070  0.35422675
## 1085  0.320242915 0.5714286 0.8203883  0.3918169 0.491228070  0.35422675
## 1173  0.320242915 0.5714286 0.8203883  0.3918169 0.491228070  0.35422675
## 1518  0.320242915 0.5714286 0.8203883  0.3918169 0.491228070  0.35422675
## 440   0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 459   0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 557   0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 630   0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 1019  0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 1432  0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 1491  0.331309042 0.5747508 0.8234337  0.3981845 0.500723589  0.36321086
## 421   0.328677463 0.5690789 0.8230016  0.3920806 0.498559078  0.35898196
## 1032  0.328677463 0.5690789 0.8230016  0.3920806 0.498559078  0.35898196
## 1487  0.328677463 0.5690789 0.8230016  0.3920806 0.498559078  0.35898196
## 293   0.332928475 0.5700326 0.8242028  0.3942354 0.502152080  0.36228742
## 1104  0.332928475 0.5700326 0.8242028  0.3942354 0.502152080  0.36228742
## 1375  0.332928475 0.5700326 0.8242028  0.3942354 0.502152080  0.36228742
## 191   0.333738192 0.5677419 0.8245902  0.3923321 0.502857143  0.36185108
## 737   0.333738192 0.5677419 0.8245902  0.3923321 0.502857143  0.36185108
## 1452  0.333738192 0.5677419 0.8245902  0.3923321 0.502857143  0.36185108
## 278   0.337112011 0.5668790 0.8256579  0.3925369 0.505681818  0.36377039
## 361   0.337112011 0.5668790 0.8256579  0.3925369 0.505681818  0.36377039
## 587   0.337112011 0.5668790 0.8256579  0.3925369 0.505681818  0.36377039
## 858   0.337112011 0.5668790 0.8256579  0.3925369 0.505681818  0.36377039
## 20    0.335357625 0.5632911 0.8253707  0.3886618 0.504249292  0.36102729
## 57    0.335357625 0.5632911 0.8253707  0.3886618 0.504249292  0.36102729
## 1297  0.337921727 0.5646688 0.8260511  0.3907199 0.506364922  0.36336309
## 249   0.336099865 0.5572755 0.8260149  0.3832905 0.504908836  0.35892042
## 306   0.336099865 0.5572755 0.8260149  0.3832905 0.504908836  0.35892042
## 362   0.336099865 0.5572755 0.8260149  0.3832905 0.504908836  0.35892042
## 487   0.336099865 0.5572755 0.8260149  0.3832905 0.504908836  0.35892042
## 525   0.336099865 0.5572755 0.8260149  0.3832905 0.504908836  0.35892042
## 591   0.336099865 0.5572755 0.8260149  0.3832905 0.504908836  0.35892042
## 937   0.339473684 0.5565749 0.8270989  0.3836738 0.507670851  0.36089773
## 1058  0.339473684 0.5565749 0.8270989  0.3836738 0.507670851  0.36089773
## 1413  0.339473684 0.5565749 0.8270989  0.3836738 0.507670851  0.36089773
## 1516  0.339473684 0.5565749 0.8270989  0.3836738 0.507670851  0.36089773
## 1267  0.342037787 0.5579268 0.8277870  0.3857139 0.509749304  0.36321992
## 369   0.341093117 0.5525526 0.8279031  0.3804556 0.508990318  0.36023715
## 961   0.341093117 0.5525526 0.8279031  0.3804556 0.508990318  0.36023715
## 976   0.341093117 0.5525526 0.8279031  0.3804556 0.508990318  0.36023715
## 1177  0.341093117 0.5525526 0.8279031  0.3804556 0.508990318  0.36023715
## 1310  0.341093117 0.5525526 0.8279031  0.3804556 0.508990318  0.36023715
## 72    0.344466937 0.5519288 0.8290025  0.3809313 0.511691884  0.36224058
## 638   0.344466937 0.5519288 0.8290025  0.3809313 0.511691884  0.36224058
## 1042  0.344466937 0.5519288 0.8290025  0.3809313 0.511691884  0.36224058
## 1152  0.344466937 0.5519288 0.8290025  0.3809313 0.511691884  0.36224058
## 281   0.346153846 0.5516224 0.8295550  0.3811774 0.513031550  0.36324376
## 461   0.346153846 0.5516224 0.8295550  0.3811774 0.513031550  0.36324376
## 423   0.346963563 0.5497076 0.8299663  0.3796739 0.513661202  0.36295044
## 1043  0.346963563 0.5497076 0.8299663  0.3796739 0.513661202  0.36295044
## 1522  0.346963563 0.5497076 0.8299663  0.3796739 0.513661202  0.36295044
## 663   0.346086370 0.5481050 0.8298231  0.3779280 0.512960437  0.36165694
## 203   0.345209177 0.5465116 0.8296796  0.3761912 0.512261580  0.36036740
## 60    0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 354   0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 498   0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 631   0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 733   0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 895   0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 979   0.345951417 0.5413105 0.8303647  0.3716753 0.512820513  0.35858274
## 206   0.343319838 0.5367232 0.8299320  0.3666551 0.510752688  0.35479569
## 399   0.343319838 0.5367232 0.8299320  0.3666551 0.510752688  0.35479569
## 1486  0.343319838 0.5367232 0.8299320  0.3666551 0.510752688  0.35479569
## 363   0.346693657 0.5363128 0.8310580  0.3673709 0.513368984  0.35688254
## 520   0.346693657 0.5363128 0.8310580  0.3673709 0.513368984  0.35688254
## 1072  0.346693657 0.5363128 0.8310580  0.3673709 0.513368984  0.35688254
## 1450  0.346693657 0.5363128 0.8310580  0.3673709 0.513368984  0.35688254
## 136   0.346626181 0.5331492 0.8313356  0.3644848 0.513297872  0.35544334
## 707   0.346626181 0.5331492 0.8313356  0.3644848 0.513297872  0.35544334
## 814   0.346626181 0.5331492 0.8313356  0.3644848 0.513297872  0.35544334
## 1243  0.346626181 0.5331492 0.8313356  0.3644848 0.513297872  0.35544334
## 780   0.347435897 0.5315068 0.8317597  0.3632665 0.513907285  0.35526304
## 1306  0.347435897 0.5315068 0.8317597  0.3632665 0.513907285  0.35526304
## 1526  0.347435897 0.5315068 0.8317597  0.3632665 0.513907285  0.35526304
## 806   0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 863   0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 894   0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 1100  0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 1196  0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 1319  0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 1519  0.358502024 0.5349462 0.8350604  0.3700067 0.522309711  0.36420893
## 218   0.365317139 0.5372340 0.8370884  0.3743224 0.527415144  0.36979237
## 334   0.365317139 0.5372340 0.8370884  0.3743224 0.527415144  0.36979237
## 335   0.365317139 0.5372340 0.8370884  0.3743224 0.527415144  0.36979237
## 609   0.365317139 0.5372340 0.8370884  0.3743224 0.527415144  0.36979237
## 275   0.365249663 0.5342105 0.8373913  0.3716018 0.527272727  0.36841206
## 348   0.365249663 0.5342105 0.8373913  0.3716018 0.527272727  0.36841206
## 747   0.365249663 0.5342105 0.8373913  0.3716018 0.527272727  0.36841206
## 790   0.365249663 0.5342105 0.8373913  0.3716018 0.527272727  0.36841206
## 159   0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 166   0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 799   0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 830   0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 889   0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 1299  0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 1469  0.362550607 0.5271318 0.8372703  0.3644021 0.525096525  0.36347519
## 636   0.365924426 0.5268542 0.8384548  0.3653090 0.527528809  0.36561659
## 669   0.365924426 0.5268542 0.8384548  0.3653090 0.527528809  0.36561659
## 1124  0.365924426 0.5268542 0.8384548  0.3653090 0.527528809  0.36561659
## 1232  0.365924426 0.5268542 0.8384548  0.3653090 0.527528809  0.36561659
## 716   0.370175439 0.5279188 0.8397887  0.3677075 0.530612245  0.36893941
## 1017  0.370175439 0.5279188 0.8397887  0.3677075 0.530612245  0.36893941
## 1415  0.370175439 0.5279188 0.8397887  0.3677075 0.530612245  0.36893941
## 939   0.367543860 0.5239295 0.8393645  0.3632940 0.528589581  0.36541275
## 987   0.367543860 0.5239295 0.8393645  0.3632940 0.528589581  0.36541275
## 1376  0.367543860 0.5239295 0.8393645  0.3632940 0.528589581  0.36541275
## 117   0.368353576 0.5225000 0.8398230  0.3623230 0.529113924  0.36532585
## 292   0.368353576 0.5225000 0.8398230  0.3623230 0.529113924  0.36532585
## 479   0.368353576 0.5225000 0.8398230  0.3623230 0.529113924  0.36532585
## 50    0.365721997 0.5186104 0.8393966  0.3580071 0.527112232  0.36184396
## 62    0.365721997 0.5186104 0.8393966  0.3580071 0.527112232  0.36184396
## 1474  0.365721997 0.5186104 0.8393966  0.3580071 0.527112232  0.36184396
## 551   0.364844804 0.5173267 0.8392540  0.3565807 0.526448363  0.36068910
## 742   0.366531714 0.5172414 0.8398577  0.3570990 0.527638191  0.36178463
## 1521  0.366531714 0.5172414 0.8398577  0.3570990 0.527638191  0.36178463
## 613   0.370782726 0.5183374 0.8412132  0.3595506 0.530663329  0.36512348
## 865   0.370782726 0.5183374 0.8412132  0.3595506 0.530663329  0.36512348
## 1020  0.370782726 0.5183374 0.8412132  0.3595506 0.530663329  0.36512348
## 307   0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 323   0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 367   0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 504   0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 573   0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 709   0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 1398  0.374966262 0.5168269 0.8429084  0.3597354 0.533498759  0.36727187
## 391   0.380904184 0.5178147 0.8449053  0.3627200 0.537607891  0.37170093
## 405   0.380904184 0.5178147 0.8449053  0.3627200 0.537607891  0.37170093
## 608   0.380904184 0.5178147 0.8449053  0.3627200 0.537607891  0.37170093
## 785   0.380904184 0.5178147 0.8449053  0.3627200 0.537607891  0.37170093
## 1093  0.380904184 0.5178147 0.8449053  0.3627200 0.537607891  0.37170093
## 230   0.382523617 0.5152225 0.8458749  0.3610974 0.538555692  0.37165612
## 236   0.382523617 0.5152225 0.8458749  0.3610974 0.538555692  0.37165612
## 298   0.382523617 0.5152225 0.8458749  0.3610974 0.538555692  0.37165612
## 374   0.382523617 0.5152225 0.8458749  0.3610974 0.538555692  0.37165612
## 874   0.382523617 0.5152225 0.8458749  0.3610974 0.538555692  0.37165612
## 1084  0.382523617 0.5152225 0.8458749  0.3610974 0.538555692  0.37165612
## 619   0.385020243 0.5138889 0.8469945  0.3608834 0.540145985  0.37275652
## 954   0.385020243 0.5138889 0.8469945  0.3608834 0.540145985  0.37275652
## 964   0.385020243 0.5138889 0.8469945  0.3608834 0.540145985  0.37275652
## 1301  0.385020243 0.5138889 0.8469945  0.3608834 0.540145985  0.37275652
## 1498  0.385020243 0.5138889 0.8469945  0.3608834 0.540145985  0.37275652
## 151   0.386707152 0.5138249 0.8476277  0.3614526 0.541262136  0.37386671
## 344   0.386707152 0.5138249 0.8476277  0.3614526 0.541262136  0.37386671
## 22    0.384885290 0.5090909 0.8477064  0.3567973 0.539759036  0.37057529
## 223   0.384885290 0.5090909 0.8477064  0.3567973 0.539759036  0.37057529
## 599   0.384885290 0.5090909 0.8477064  0.3567973 0.539759036  0.37057529
## 688   0.384885290 0.5090909 0.8477064  0.3567973 0.539759036  0.37057529
## 741   0.384885290 0.5090909 0.8477064  0.3567973 0.539759036  0.37057529
## 1473  0.384885290 0.5090909 0.8477064  0.3567973 0.539759036  0.37057529
## 153   0.389946019 0.5089686 0.8496310  0.3585996 0.543062201  0.37394450
## 225   0.389946019 0.5089686 0.8496310  0.3585996 0.543062201  0.37394450
## 442   0.389946019 0.5089686 0.8496310  0.3585996 0.543062201  0.37394450
## 657   0.389946019 0.5089686 0.8496310  0.3585996 0.543062201  0.37394450
## 882   0.389946019 0.5089686 0.8496310  0.3585996 0.543062201  0.37394450
## 1472  0.389946019 0.5089686 0.8496310  0.3585996 0.543062201  0.37394450
## 61    0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 130   0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 277   0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 761   0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 791   0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 1023  0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 1322  0.387246964 0.5033113 0.8495822  0.3528934 0.540925267  0.36967135
## 46    0.390620783 0.5032823 0.8508854  0.3541676 0.543093270  0.37194790
## 125   0.390620783 0.5032823 0.8508854  0.3541676 0.543093270  0.37194790
## 1318  0.390620783 0.5032823 0.8508854  0.3541676 0.543093270  0.37194790
## 1408  0.390620783 0.5032823 0.8508854  0.3541676 0.543093270  0.37194790
## 90    0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 106   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 222   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 690   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 842   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 853   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 981   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 983   0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 1466  0.393049933 0.5000000 0.8524436  0.3524436 0.544392523  0.37219341
## 559   0.392982456 0.4978723 0.8528302  0.3507025 0.544186047  0.37124108
## 1065  0.392982456 0.4978723 0.8528302  0.3507025 0.544186047  0.37124108
## 1078  0.392982456 0.4978723 0.8528302  0.3507025 0.544186047  0.37124108
## 1309  0.392982456 0.4978723 0.8528302  0.3507025 0.544186047  0.37124108
## 255   0.393792173 0.4968288 0.8533586  0.3501873 0.544611819  0.37135027
## 1264  0.393792173 0.4968288 0.8533586  0.3501873 0.544611819  0.37135027
## 1461  0.393792173 0.4968288 0.8533586  0.3501873 0.544611819  0.37135027
## 247   0.392847503 0.4937238 0.8536122  0.3473360 0.543778802  0.36939151
## 248   0.392847503 0.4937238 0.8536122  0.3473360 0.543778802  0.36939151
## 728   0.392847503 0.4937238 0.8536122  0.3473360 0.543778802  0.36939151
## 869   0.392847503 0.4937238 0.8536122  0.3473360 0.543778802  0.36939151
## 1050  0.392847503 0.4937238 0.8536122  0.3473360 0.543778802  0.36939151
## 233   0.388461538 0.4886128 0.8529131  0.3415259 0.540664376  0.36423850
## 400   0.388461538 0.4886128 0.8529131  0.3415259 0.540664376  0.36423850
## 576   0.388461538 0.4886128 0.8529131  0.3415259 0.540664376  0.36423850
## 826   0.388461538 0.4886128 0.8529131  0.3415259 0.540664376  0.36423850
## 1000  0.388461538 0.4886128 0.8529131  0.3415259 0.540664376  0.36423850
## 103   0.386639676 0.4846626 0.8530259  0.3376885 0.539249147  0.36133610
## 156   0.386639676 0.4846626 0.8530259  0.3376885 0.539249147  0.36133610
## 201   0.386639676 0.4846626 0.8530259  0.3376885 0.539249147  0.36133610
## 332   0.386639676 0.4846626 0.8530259  0.3376885 0.539249147  0.36133610
## 1097  0.386639676 0.4846626 0.8530259  0.3376885 0.539249147  0.36133610
## 1174  0.386639676 0.4846626 0.8530259  0.3376885 0.539249147  0.36133610
## 708   0.384817814 0.4808081 0.8531401  0.3339482 0.537853107  0.35848181
## 957   0.384817814 0.4808081 0.8531401  0.3339482 0.537853107  0.35848181
## 1128  0.384817814 0.4808081 0.8531401  0.3339482 0.537853107  0.35848181
## 1214  0.384817814 0.4808081 0.8531401  0.3339482 0.537853107  0.35848181
## 1254  0.384817814 0.4808081 0.8531401  0.3339482 0.537853107  0.35848181
## 1477  0.384817814 0.4808081 0.8531401  0.3339482 0.537853107  0.35848181
## 200   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 229   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 272   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 314   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 349   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 446   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 612   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 933   0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 1073  0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 1211  0.382928475 0.4752475 0.8536585  0.3289061 0.536312849  0.35489082
## 17    0.381106613 0.4716243 0.8537782  0.3254025 0.534961154  0.35215485
## 795   0.381106613 0.4716243 0.8537782  0.3254025 0.534961154  0.35215485
## 931   0.381106613 0.4716243 0.8537782  0.3254025 0.534961154  0.35215485
## 1156  0.381106613 0.4716243 0.8537782  0.3254025 0.534961154  0.35215485
## 1168  0.381106613 0.4716243 0.8537782  0.3254025 0.534961154  0.35215485
## 1527  0.381106613 0.4716243 0.8537782  0.3254025 0.534961154  0.35215485
## 632   0.387044534 0.4728682 0.8560158  0.3288840 0.538631347  0.35678110
## 951   0.387044534 0.4728682 0.8560158  0.3288840 0.538631347  0.35678110
## 993   0.387044534 0.4728682 0.8560158  0.3288840 0.538631347  0.35678110
## 1105  0.387044534 0.4728682 0.8560158  0.3288840 0.538631347  0.35678110
## 1291  0.387044534 0.4728682 0.8560158  0.3288840 0.538631347  0.35678110
## 438   0.396423752 0.4760077 0.8592666  0.3352743 0.544456641  0.36456918
## 565   0.396423752 0.4760077 0.8592666  0.3352743 0.544456641  0.36456918
## 711   0.396423752 0.4760077 0.8592666  0.3352743 0.544456641  0.36456918
## 1212  0.396423752 0.4760077 0.8592666  0.3352743 0.544456641  0.36456918
## 1337  0.396423752 0.4760077 0.8592666  0.3352743 0.544456641  0.36456918
## 579   0.396356275 0.4742857 0.8597015  0.3339872 0.544262295  0.36383777
## 732   0.396356275 0.4742857 0.8597015  0.3339872 0.544262295  0.36383777
## 1336  0.396356275 0.4742857 0.8597015  0.3339872 0.544262295  0.36383777
## 1428  0.396356275 0.4742857 0.8597015  0.3339872 0.544262295  0.36383777
## 104   0.392847503 0.4706994 0.8591409  0.3298403 0.541893362  0.35996796
## 592   0.392847503 0.4706994 0.8591409  0.3298403 0.541893362  0.35996796
## 792   0.392847503 0.4706994 0.8591409  0.3298403 0.541893362  0.35996796
## 1389  0.392847503 0.4706994 0.8591409  0.3298403 0.541893362  0.35996796
## 333   0.389338731 0.4671670 0.8585757  0.3257427 0.539544962  0.35612393
## 383   0.389338731 0.4671670 0.8585757  0.3257427 0.539544962  0.35612393
## 798   0.389338731 0.4671670 0.8585757  0.3257427 0.539544962  0.35612393
## 1411  0.389338731 0.4671670 0.8585757  0.3257427 0.539544962  0.35612393
## 545   0.390958165 0.4656772 0.8597376  0.3254148 0.540365985  0.35668415
## 846   0.390958165 0.4656772 0.8597376  0.3254148 0.540365985  0.35668415
## 896   0.390958165 0.4656772 0.8597376  0.3254148 0.540365985  0.35668415
## 1220  0.390958165 0.4656772 0.8597376  0.3254148 0.540365985  0.35668415
## 1293  0.390958165 0.4656772 0.8597376  0.3254148 0.540365985  0.35668415
## 1494  0.390958165 0.4656772 0.8597376  0.3254148 0.540365985  0.35668415
## 178   0.391767881 0.4649446 0.8603239  0.3252685 0.540772532  0.35697306
## 713   0.391767881 0.4649446 0.8603239  0.3252685 0.540772532  0.35697306
## 1157  0.391767881 0.4649446 0.8603239  0.3252685 0.540772532  0.35697306
## 168   0.389946019 0.4616788 0.8604888  0.3221676 0.539445629  0.35444038
## 295   0.389946019 0.4616788 0.8604888  0.3221676 0.539445629  0.35444038
## 471   0.389946019 0.4616788 0.8604888  0.3221676 0.539445629  0.35444038
## 647   0.389946019 0.4616788 0.8604888  0.3221676 0.539445629  0.35444038
## 776   0.389946019 0.4616788 0.8604888  0.3221676 0.539445629  0.35444038
## 832   0.389946019 0.4616788 0.8604888  0.3221676 0.539445629  0.35444038
## 7     0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 386   0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 494   0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 598   0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 682   0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 1053  0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 1283  0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 1326  0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 1456  0.385492578 0.4560144 0.8602261  0.3162405 0.536430834  0.34915377
## 300   0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 370   0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 394   0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 493   0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 919   0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 1102  0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 1178  0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 1247  0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 1394  0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 1422  0.383603239 0.4514991 0.8608515  0.3123506 0.535005225  0.34614839
## 101   0.382658570 0.4493007 0.8611691  0.3104698 0.534303534  0.34467946
## 301   0.382658570 0.4493007 0.8611691  0.3104698 0.534303534  0.34467946
## 548   0.382658570 0.4493007 0.8611691  0.3104698 0.534303534  0.34467946
## 1083  0.382658570 0.4493007 0.8611691  0.3104698 0.534303534  0.34467946
## 1467  0.382658570 0.4493007 0.8611691  0.3104698 0.534303534  0.34467946
## 1040  0.381781377 0.4485166 0.8610240  0.3095406 0.533748702  0.34376859
## 297   0.382591093 0.4479167 0.8616352  0.3095519 0.534161491  0.34413921
## 424   0.382591093 0.4479167 0.8616352  0.3095519 0.534161491  0.34413921
## 1396  0.382591093 0.4479167 0.8616352  0.3095519 0.534161491  0.34413921
## 91    0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 288   0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 341   0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 413   0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 547   0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 601   0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 677   0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 1076  0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 1125  0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 1169  0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 1493  0.376383266 0.4412266 0.8610817  0.3023082 0.530194473  0.33731848
## 132   0.372874494 0.4382403 0.8604899  0.2987302 0.528032620  0.33374969
## 831   0.372874494 0.4382403 0.8604899  0.2987302 0.528032620  0.33374969
## 1148  0.372874494 0.4382403 0.8604899  0.2987302 0.528032620  0.33374969
## 1162  0.372874494 0.4382403 0.8604899  0.2987302 0.528032620  0.33374969
## 1468  0.371997301 0.4375000 0.8603412  0.2978412 0.527494908  0.33286049
## 193   0.372807018 0.4369748 0.8609626  0.2979374 0.527918782  0.33327637
## 252   0.372807018 0.4369748 0.8609626  0.2979374 0.527918782  0.33327637
## 586   0.372807018 0.4369748 0.8609626  0.2979374 0.527918782  0.33327637
## 214   0.372739541 0.4357262 0.8614393  0.2971655 0.527805865  0.33281427
## 915   0.372739541 0.4357262 0.8614393  0.2971655 0.527805865  0.33281427
## 974   0.372739541 0.4357262 0.8614393  0.2971655 0.527805865  0.33281427
## 1334  0.372739541 0.4357262 0.8614393  0.2971655 0.527805865  0.33281427
## 6     0.375236167 0.4354305 0.8628510  0.2982814 0.529175050  0.33455341
## 390   0.375236167 0.4354305 0.8628510  0.2982814 0.529175050  0.33455341
## 393   0.375236167 0.4354305 0.8628510  0.2982814 0.529175050  0.33455341
## 736   0.375236167 0.4354305 0.8628510  0.2982814 0.529175050  0.33455341
## 1215  0.375236167 0.4354305 0.8628510  0.2982814 0.529175050  0.33455341
## 47    0.375168691 0.4342105 0.8633406  0.2975511 0.529058116  0.33411353
## 881   0.375168691 0.4342105 0.8633406  0.2975511 0.529058116  0.33411353
## 959   0.375168691 0.4342105 0.8633406  0.2975511 0.529058116  0.33411353
## 1057  0.375168691 0.4342105 0.8633406  0.2975511 0.529058116  0.33411353
## 269   0.370782726 0.4306688 0.8625954  0.2932643 0.526420738  0.32975343
## 428   0.370782726 0.4306688 0.8625954  0.2932643 0.526420738  0.32975343
## 621   0.370782726 0.4306688 0.8625954  0.2932643 0.526420738  0.32975343
## 745   0.370782726 0.4306688 0.8625954  0.2932643 0.526420738  0.32975343
## 1449  0.370782726 0.4306688 0.8625954  0.2932643 0.526420738  0.32975343
## 382   0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 451   0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 768   0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 841   0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 1122  0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 1235  0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 1340  0.371524966 0.4290323 0.8637363  0.2927685 0.526732673  0.32980421
## 37    0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 235   0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 407   0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 425   0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 577   0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 655   0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 928   0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 1350  0.367948718 0.4251592 0.8636364  0.2887956 0.524557957  0.32597848
## 24    0.371322537 0.4256329 0.8652561  0.2908890 0.526418787  0.32865431
## 778   0.371322537 0.4256329 0.8652561  0.2908890 0.526418787  0.32865431
## 876   0.371322537 0.4256329 0.8652561  0.2908890 0.526418787  0.32865431
## 885   0.371322537 0.4256329 0.8652561  0.2908890 0.526418787  0.32865431
## 271   0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 512   0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 862   0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 944   0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 949   0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 1219  0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 1253  0.375506073 0.4256651 0.8675645  0.2932296 0.528668610  0.33182753
## 263   0.375438596 0.4245723 0.8680947  0.2926670 0.528557599  0.33147925
## 368   0.375438596 0.4245723 0.8680947  0.2926670 0.528557599  0.33147925
## 1039  0.375438596 0.4245723 0.8680947  0.2926670 0.528557599  0.33147925
## 1092  0.375438596 0.4245723 0.8680947  0.2926670 0.528557599  0.33147925
## 4     0.373616734 0.4221880 0.8683314  0.2905194 0.527430221  0.32945852
## 372   0.373616734 0.4221880 0.8683314  0.2905194 0.527430221  0.32945852
## 726   0.373616734 0.4221880 0.8683314  0.2905194 0.527430221  0.32945852
## 757   0.373616734 0.4221880 0.8683314  0.2905194 0.527430221  0.32945852
## 1062  0.373616734 0.4221880 0.8683314  0.2905194 0.527430221  0.32945852
## 1185  0.373616734 0.4221880 0.8683314  0.2905194 0.527430221  0.32945852
## 55    0.372672065 0.4204893 0.8687215  0.2892108 0.526819923  0.32829982
## 926   0.372672065 0.4204893 0.8687215  0.2892108 0.526819923  0.32829982
## 1150  0.372672065 0.4204893 0.8687215  0.2892108 0.526819923  0.32829982
## 1204  0.372672065 0.4204893 0.8687215  0.2892108 0.526819923  0.32829982
## 1324  0.372672065 0.4204893 0.8687215  0.2892108 0.526819923  0.32829982
## 154   0.373481781 0.4200913 0.8694158  0.2895071 0.527220630  0.32882463
## 1172  0.373481781 0.4200913 0.8694158  0.2895071 0.527220630  0.32882463
## 1316  0.373481781 0.4200913 0.8694158  0.2895071 0.527220630  0.32882463
## 217   0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 371   0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 618   0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 712   0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 729   0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 1099  0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 1488  0.384547908 0.4231928 0.8741339  0.2973267 0.533206831  0.33813661
## 38    0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 68    0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 305   0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 585   0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 812   0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 854   0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 880   0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 973   0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 1195  0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 1284  0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 1290  0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 1492  0.387786775 0.4215976 0.8770492  0.2986468 0.534709193  0.34031057
## 664   0.384278003 0.4191176 0.8764706  0.2955882 0.532710280  0.33702827
## 1034  0.384278003 0.4191176 0.8764706  0.2955882 0.532710280  0.33702827
## 1060  0.384278003 0.4191176 0.8764706  0.2955882 0.532710280  0.33702827
## 1136  0.384278003 0.4191176 0.8764706  0.2955882 0.532710280  0.33702827
## 49    0.385087719 0.4187408 0.8772137  0.2959545 0.533084809  0.33759215
## 290   0.385087719 0.4187408 0.8772137  0.2959545 0.533084809  0.33759215
## 1465  0.385087719 0.4187408 0.8772137  0.2959545 0.533084809  0.33759215
## 109   0.383333333 0.4175182 0.8769231  0.2944413 0.532093023  0.33596008
## 265   0.383333333 0.4175182 0.8769231  0.2944413 0.532093023  0.33596008
## 251   0.383265857 0.4165457 0.8775268  0.2940725 0.531974050  0.33572003
## 373   0.383265857 0.4165457 0.8775268  0.2940725 0.531974050  0.33572003
## 628   0.383265857 0.4165457 0.8775268  0.2940725 0.531974050  0.33572003
## 746   0.383265857 0.4165457 0.8775268  0.2940725 0.531974050  0.33572003
## 274   0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 342   0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 857   0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 971   0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 996   0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 1049  0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 1123  0.387449393 0.4166667 0.8800959  0.2967626 0.534069982  0.33908773
## 463   0.389946019 0.4165478 0.8817853  0.2983331 0.535288726  0.34107740
## 771   0.389946019 0.4165478 0.8817853  0.2983331 0.535288726  0.34107740
## 1095  0.389946019 0.4165478 0.8817853  0.2983331 0.535288726  0.34107740
## 1328  0.389946019 0.4165478 0.8817853  0.2983331 0.535288726  0.34107740
## 1485  0.389946019 0.4165478 0.8817853  0.2983331 0.535288726  0.34107740
## 378   0.390755735 0.4161932 0.8825666  0.2987598 0.535648995  0.34167542
## 1255  0.390755735 0.4161932 0.8825666  0.2987598 0.535648995  0.34167542
## 1365  0.390755735 0.4161932 0.8825666  0.2987598 0.535648995  0.34167542
## 27    0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 194   0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 595   0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 901   0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 922   0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 966   0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 1001  0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 1179  0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 1504  0.386302294 0.4123422 0.8824969  0.2948392 0.533091568  0.33748636
## 646   0.387921727 0.4116829 0.8840937  0.2957766 0.533814247  0.33873023
## 710   0.387921727 0.4116829 0.8840937  0.2957766 0.533814247  0.33873023
## 740   0.387921727 0.4116829 0.8840937  0.2957766 0.533814247  0.33873023
## 759   0.387921727 0.4116829 0.8840937  0.2957766 0.533814247  0.33873023
## 921   0.387921727 0.4116829 0.8840937  0.2957766 0.533814247  0.33873023
## 1207  0.387921727 0.4116829 0.8840937  0.2957766 0.533814247  0.33873023
## 74    0.390418354 0.4116022 0.8858561  0.2974583 0.535008977  0.34078318
## 150   0.390418354 0.4116022 0.8858561  0.2974583 0.535008977  0.34078318
## 259   0.390418354 0.4116022 0.8858561  0.2974583 0.535008977  0.34078318
## 884   0.390418354 0.4116022 0.8858561  0.2974583 0.535008977  0.34078318
## 1296  0.390418354 0.4116022 0.8858561  0.2974583 0.535008977  0.34078318
## 145   0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 180   0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 935   0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 1171  0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 1188  0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 1495  0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 1528  0.387719298 0.4090287 0.8861076  0.2951364 0.533452275  0.33827513
## 163   0.385897436 0.4070556 0.8865069  0.2935626 0.532386868  0.33657843
## 640   0.385897436 0.4070556 0.8865069  0.2935626 0.532386868  0.33657843
## 722   0.385897436 0.4070556 0.8865069  0.2935626 0.532386868  0.33657843
## 992   0.385897436 0.4070556 0.8865069  0.2935626 0.532386868  0.33657843
## 1030  0.385897436 0.4070556 0.8865069  0.2935626 0.532386868  0.33657843
## 1483  0.385897436 0.4070556 0.8865069  0.2935626 0.532386868  0.33657843
## 66    0.388394062 0.4070081 0.8883249  0.2953330 0.533568905  0.33868210
## 953   0.388394062 0.4070081 0.8883249  0.2953330 0.533568905  0.33868210
## 1071  0.388394062 0.4070081 0.8883249  0.2953330 0.533568905  0.33868210
## 1191  0.388394062 0.4070081 0.8883249  0.2953330 0.533568905  0.33868210
## 1520  0.388394062 0.4070081 0.8883249  0.2953330 0.533568905  0.33868210
## 73    0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 420   0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 540   0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 610   0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 639   0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 692   0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 904   0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 1013  0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 1119  0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 1317  0.393387314 0.4069149 0.8920308  0.2989457 0.535901926  0.34293070
## 207   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 474   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 481   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 542   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 629   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 633   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 861   0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 1005  0.403576248 0.4092105 0.8974026  0.3066131 0.540869565  0.35176949
## 240   0.399190283 0.4065359 0.8967320  0.3032680 0.538528139  0.34793912
## 697   0.399190283 0.4065359 0.8967320  0.3032680 0.538528139  0.34793912
## 888   0.399190283 0.4065359 0.8967320  0.3032680 0.538528139  0.34793912
## 1015  0.399190283 0.4065359 0.8967320  0.3032680 0.538528139  0.34793912
## 1280  0.399190283 0.4065359 0.8967320  0.3032680 0.538528139  0.34793912
## 279   0.399122807 0.4057217 0.8975033  0.3032250 0.538395168  0.34788506
## 445   0.399122807 0.4057217 0.8975033  0.3032250 0.538395168  0.34788506
## 1260  0.399122807 0.4057217 0.8975033  0.3032250 0.538395168  0.34788506
## 1523  0.399122807 0.4057217 0.8975033  0.3032250 0.538395168  0.34788506
## 256   0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 437   0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 917   0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 1154  0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 1182  0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 1239  0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 1387  0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 1476  0.398987854 0.4041184 0.8990704  0.3031888 0.538131962  0.34780547
## 266   0.397165992 0.4022989 0.8995984  0.3018972 0.537084399  0.34627059
## 509   0.397165992 0.4022989 0.8995984  0.3018972 0.537084399  0.34627059
## 914   0.397165992 0.4022989 0.8995984  0.3018972 0.537084399  0.34627059
## 1098  0.397165992 0.4022989 0.8995984  0.3018972 0.537084399  0.34627059
## 1190  0.397165992 0.4022989 0.8995984  0.3018972 0.537084399  0.34627059
## 1344  0.397165992 0.4022989 0.8995984  0.3018972 0.537084399  0.34627059
## 148   0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 152   0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 495   0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 568   0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 1377  0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 1404  0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 1421  0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 1475  0.397031039 0.4007585 0.9012179  0.3019764 0.536833192  0.34625713
## 83    0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 262   0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 497   0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 635   0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 794   0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 828   0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 893   0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 1210  0.393454791 0.3979975 0.9015048  0.2995023 0.534903280  0.34327920
## 25    0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 39    0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 575   0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 641   0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 680   0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 731   0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 813   0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 965   0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 1225  0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 1246  0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 1352  0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 1403  0.389811066 0.3945746 0.9026426  0.2972172 0.532889259  0.34037999
## 175   0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 397   0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 511   0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 620   0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 695   0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 701   0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 1153  0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 1399  0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 1510  0.392240216 0.3939024 0.9056338  0.2995362 0.533884298  0.34276838
## 93    0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 245   0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 346   0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 366   0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 417   0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 948   0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 1075  0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 1261  0.392105263 0.3925121 0.9074074  0.2999195 0.533661741  0.34292858
## 40    0.389473684 0.3910951 0.9070100  0.2981051 0.532350532  0.34074049
## 1044  0.389473684 0.3910951 0.9070100  0.2981051 0.532350532  0.34074049
## 1249  0.389473684 0.3910951 0.9070100  0.2981051 0.532350532  0.34074049
## 243   0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 532   0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 671   0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 672   0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 837   0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 1277  0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 1499  0.383333333 0.3878282 0.9060694  0.2938975 0.529315961  0.33564970
## 328   0.385829960 0.3879004 0.9082969  0.2961973 0.530413625  0.33805590
## 347   0.385829960 0.3879004 0.9082969  0.2961973 0.530413625  0.33805590
## 611   0.385829960 0.3879004 0.9082969  0.2961973 0.530413625  0.33805590
## 1158  0.385829960 0.3879004 0.9082969  0.2961973 0.530413625  0.33805590
## 1446  0.385829960 0.3879004 0.9082969  0.2961973 0.530413625  0.33805590
## 2     0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 87    0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 232   0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 246   0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 261   0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 691   0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 1080  0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 1222  0.382253711 0.3854289 0.9086892  0.2941182 0.528605963  0.33530249
## 286   0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 381   0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 997   0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 1061  0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 1139  0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 1142  0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 1440  0.379554656 0.3834499 0.9092262  0.2926761 0.527243590  0.33329651
## 56    0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 208   0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 406   0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 593   0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 829   0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 875   0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 969   0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 1208  0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 1359  0.375101215 0.3806228 0.9095023  0.2901251 0.525059666  0.32988828
## 693   0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 699   0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 850   0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 1118  0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 1135  0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 1263  0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 1272  0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 1320  0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 1373  0.380971660 0.3812785 0.9143731  0.2956516 0.527646130  0.33561122
## 237   0.381781377 0.3811149 0.9155146  0.2966295 0.527974783  0.33652283
## 615   0.381781377 0.3811149 0.9155146  0.2966295 0.527974783  0.33652283
## 1355  0.381781377 0.3811149 0.9155146  0.2966295 0.527974783  0.33652283
## 694   0.379149798 0.3798186 0.9151235  0.2949421 0.526729560  0.33440577
## 1038  0.379149798 0.3798186 0.9151235  0.2949421 0.526729560  0.33440577
## 1313  0.379149798 0.3798186 0.9151235  0.2949421 0.526729560  0.33440577
## 485   0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 507   0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 679   0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 988   0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 1066  0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 1279  0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 1346  0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 1354  0.375573549 0.3775281 0.9156250  0.2931531 0.525000000  0.33181402
## 183   0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 260   0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 558   0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 1054  0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 1427  0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 1481  0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 1525  0.369433198 0.3745819 0.9146919  0.2892739 0.522144522  0.32690576
## 444   0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 748   0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 793   0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 803   0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 821   0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 1035  0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 1229  0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 1390  0.362415655 0.3712707 0.9136000  0.2848707 0.518918919  0.32131232
## 320   0.361470985 0.3703297 0.9145161  0.2848458 0.518461538  0.32087925
## 376   0.361470985 0.3703297 0.9145161  0.2848458 0.518461538  0.32087925
## 422   0.361470985 0.3703297 0.9145161  0.2848458 0.518461538  0.32087925
## 503   0.361470985 0.3703297 0.9145161  0.2848458 0.518461538  0.32087925
## 1165  0.361470985 0.3703297 0.9145161  0.2848458 0.518461538  0.32087925
## 5     0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 65    0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 316   0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 414   0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 505   0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 980   0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 1014  0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 1170  0.354453441 0.3671024 0.9133987  0.2805011 0.515290520  0.31531663
## 29    0.349190283 0.3647186 0.9125413  0.2772599 0.512937595  0.31115342
## 317   0.349190283 0.3647186 0.9125413  0.2772599 0.512937595  0.31115342
## 419   0.349190283 0.3647186 0.9125413  0.2772599 0.512937595  0.31115342
## 905   0.349190283 0.3647186 0.9125413  0.2772599 0.512937595  0.31115342
## 1016  0.349190283 0.3647186 0.9125413  0.2772599 0.512937595  0.31115342
## 1392  0.349190283 0.3647186 0.9125413  0.2772599 0.512937595  0.31115342
## 469   0.350000000 0.3646170 0.9137645  0.2783816 0.513287775  0.31214347
## 590   0.350000000 0.3646170 0.9137645  0.2783816 0.513287775  0.31214347
## 1068  0.350000000 0.3646170 0.9137645  0.2783816 0.513287775  0.31214347
## 287   0.348178138 0.3633441 0.9145729  0.2779169 0.512471655  0.31107008
## 388   0.348178138 0.3633441 0.9145729  0.2779169 0.512471655  0.31107008
## 597   0.348178138 0.3633441 0.9145729  0.2779169 0.512471655  0.31107008
## 702   0.348178138 0.3633441 0.9145729  0.2779169 0.512471655  0.31107008
## 1114  0.348178138 0.3633441 0.9145729  0.2779169 0.512471655  0.31107008
## 1366  0.348178138 0.3633441 0.9145729  0.2779169 0.512471655  0.31107008
## 131   0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 458   0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 574   0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 1018  0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 1028  0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 1245  0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 1391  0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 1453  0.348043185 0.3623804 0.9168081  0.2791886 0.512396694  0.31172053
## 177   0.347098516 0.3615222 0.9178082  0.2793304 0.511976048  0.31137626
## 510   0.347098516 0.3615222 0.9178082  0.2793304 0.511976048  0.31137626
## 836   0.347098516 0.3615222 0.9178082  0.2793304 0.511976048  0.31137626
## 867   0.347098516 0.3615222 0.9178082  0.2793304 0.511976048  0.31137626
## 1512  0.347098516 0.3615222 0.9178082  0.2793304 0.511976048  0.31137626
## 241   0.346153846 0.3606730 0.9188256  0.2794985 0.511558538  0.31104581
## 755   0.346153846 0.3606730 0.9188256  0.2794985 0.511558538  0.31104581
## 758   0.346153846 0.3606730 0.9188256  0.2794985 0.511558538  0.31104581
## 1164  0.346153846 0.3606730 0.9188256  0.2794985 0.511558538  0.31104581
## 1176  0.346153846 0.3606730 0.9188256  0.2794985 0.511558538  0.31104581
## 45    0.344331984 0.3594566 0.9197208  0.2791774 0.510764662  0.31004791
## 51    0.344331984 0.3594566 0.9197208  0.2791774 0.510764662  0.31004791
## 359   0.344331984 0.3594566 0.9197208  0.2791774 0.510764662  0.31004791
## 1233  0.344331984 0.3594566 0.9197208  0.2791774 0.510764662  0.31004791
## 1265  0.344331984 0.3594566 0.9197208  0.2791774 0.510764662  0.31004791
## 1530  0.344331984 0.3594566 0.9197208  0.2791774 0.510764662  0.31004791
## 496   0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 528   0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 670   0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 673   0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 804   0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 1180  0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 1524  0.338191633 0.3568465 0.9187279  0.2755744 0.508124077  0.30528176
## 15    0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 162   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 231   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 429   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 667   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 762   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 911   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 978   0.331174089 0.3539095 0.9175627  0.2714722 0.505139501  0.29984088
## 408   0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 412   0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 653   0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 718   0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 848   0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 1193  0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 1194  0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 1202  0.334480432 0.3540816 0.9218182  0.2758998 0.506569343  0.30378132
## 54    0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 146   0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 627   0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 763   0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 805   0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 1041  0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 1361  0.331781377 0.3525836 0.9226519  0.2752355 0.505446623  0.30218872
## 35    0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 80    0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 283   0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 289   0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 934   0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 1063  0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 1160  0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 1234  0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 1358  0.330769231 0.3514056 0.9250936  0.2764993 0.505050505  0.30241932
## 188   0.327260459 0.3500000 0.9245283  0.2745283 0.503597122  0.29973698
## 823   0.327260459 0.3500000 0.9245283  0.2745283 0.503597122  0.29973698
## 920   0.327260459 0.3500000 0.9245283  0.2745283 0.503597122  0.29973698
## 1349  0.327260459 0.3500000 0.9245283  0.2745283 0.503597122  0.29973698
## 179   0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 343   0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 506   0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 515   0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 1275  0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 1339  0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 1430  0.324561404 0.3485601 0.9254302  0.2739903 0.502505369  0.29820576
## 92    0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 228   0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 310   0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 807   0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 986   0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 1286  0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 1298  0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 1330  0.324426451 0.3477833 0.9281553  0.2759386 0.502491103  0.29920190
## 202   0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 364   0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 546   0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 972   0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 982   0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 1012  0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 1056  0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 1242  0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 1303  0.319973009 0.3457031 0.9288538  0.2745569 0.500707214  0.29639634
## 186   0.315587045 0.3440233 0.9281437  0.2721670 0.498942918  0.29307404
## 189   0.315587045 0.3440233 0.9281437  0.2721670 0.498942918  0.29307404
## 477   0.315587045 0.3440233 0.9281437  0.2721670 0.498942918  0.29307404
## 508   0.315587045 0.3440233 0.9281437  0.2721670 0.498942918  0.29307404
## 1141  0.315587045 0.3440233 0.9281437  0.2721670 0.498942918  0.29307404
## 176   0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 285   0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 623   0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 723   0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 923   0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 1200  0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 1266  0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 1374  0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 1412  0.314574899 0.3429672 0.9308943  0.2738616 0.498599440  0.29351315
## 182   0.320512821 0.3441994 0.9363450  0.2805444 0.501046755  0.29986343
## 571   0.320512821 0.3441994 0.9363450  0.2805444 0.501046755  0.29986343
## 689   0.320512821 0.3441994 0.9363450  0.2805444 0.501046755  0.29986343
## 1002  0.320512821 0.3441994 0.9363450  0.2805444 0.501046755  0.29986343
## 1048  0.320512821 0.3441994 0.9363450  0.2805444 0.501046755  0.29986343
## 435   0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 484   0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 537   0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 665   0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 734   0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 956   0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 1149  0.321255061 0.3438095 0.9395833  0.2833929 0.501388889  0.30173066
## 313   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 325   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 402   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 589   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 685   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 811   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 984   0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 1046  0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 1203  0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 1257  0.315924426 0.3415094 0.9404255  0.2819350 0.499310345  0.29844621
## 385   0.313292848 0.3405456 0.9400428  0.2805885 0.498279422  0.29649006
## 730   0.313292848 0.3405456 0.9400428  0.2805885 0.498279422  0.29649006
## 767   0.313292848 0.3405456 0.9400428  0.2805885 0.498279422  0.29649006
## 254   0.315789474 0.3408240 0.9437229  0.2845469 0.499314129  0.29976144
## 499   0.315789474 0.3408240 0.9437229  0.2845469 0.499314129  0.29976144
## 552   0.315789474 0.3408240 0.9437229  0.2845469 0.499314129  0.29976144
## 864   0.315789474 0.3408240 0.9437229  0.2845469 0.499314129  0.29976144
## 977   0.315789474 0.3408240 0.9437229  0.2845469 0.499314129  0.29976144
## 28    0.312280702 0.3395522 0.9432314  0.2827837 0.497948016  0.29716643
## 33    0.312280702 0.3395522 0.9432314  0.2827837 0.497948016  0.29716643
## 357   0.312280702 0.3395522 0.9432314  0.2827837 0.497948016  0.29716643
## 1351  0.312280702 0.3395522 0.9432314  0.2827837 0.497948016  0.29716643
## 516   0.308771930 0.3382900 0.9427313  0.2810212 0.496589359  0.29456998
## 523   0.308771930 0.3382900 0.9427313  0.2810212 0.496589359  0.29456998
## 797   0.308771930 0.3382900 0.9427313  0.2810212 0.496589359  0.29456998
## 940   0.308771930 0.3382900 0.9427313  0.2810212 0.496589359  0.29456998
## 234   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 319   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 431   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 527   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 600   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 648   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 824   0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 1069  0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 1115  0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 1335  0.303441296 0.3360958 0.9436937  0.2797895 0.494579946  0.29137549
## 11    0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 67    0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 268   0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 303   0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 396   0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 488   0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 943   0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 991   0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 1311  0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 1348  0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 1416  0.297233468 0.3336372 0.9445727  0.2782099 0.492266308  0.28756444
## 30    0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 472   0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 659   0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 802   0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 860   0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 963   0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 1166  0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 1288  0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 1305  0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 1459  0.291902834 0.3315266 0.9456265  0.2771531 0.490313961  0.28443239
## 107   0.290080972 0.3306379 0.9472422  0.2778801 0.489687292  0.28391501
## 257   0.290080972 0.3306379 0.9472422  0.2778801 0.489687292  0.28391501
## 536   0.290080972 0.3306379 0.9472422  0.2778801 0.489687292  0.28391501
## 652   0.290080972 0.3306379 0.9472422  0.2778801 0.489687292  0.28391501
## 662   0.290080972 0.3306379 0.9472422  0.2778801 0.489687292  0.28391501
## 995   0.290080972 0.3306379 0.9472422  0.2778801 0.489687292  0.28391501
## 53    0.289136302 0.3300537 0.9490291  0.2790828 0.489389920  0.28406508
## 276   0.289136302 0.3300537 0.9490291  0.2790828 0.489389920  0.28406508
## 398   0.289136302 0.3300537 0.9490291  0.2790828 0.489389920  0.28406508
## 1307  0.289136302 0.3300537 0.9490291  0.2790828 0.489389920  0.28406508
## 1332  0.289136302 0.3300537 0.9490291  0.2790828 0.489389920  0.28406508
## 21    0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 86    0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 128   0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 160   0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 204   0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 696   0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 766   0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 1077  0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 1144  0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 1424  0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 1435  0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 1454  0.285492578 0.3283186 0.9525000  0.2808186 0.488157895  0.28314594
## 544   0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 554   0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 580   0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 605   0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 838   0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 1187  0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 1271  0.279352227 0.3262973 0.9516539  0.2779512 0.485920105  0.27865084
## 1     0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 120   0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 174   0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 199   0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 624   0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 1209  0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 1393  0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 1480  0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 1482  0.274898785 0.3246073 0.9531250  0.2777323 0.484375000  0.27631193
## 345   0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 352   0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 483   0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 849   0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 890   0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 1384  0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 1419  0.272199730 0.3235039 0.9549072  0.2784111 0.483473752  0.27528788
## 70    0.268690958 0.3223855 0.9544236  0.2768091 0.482223659  0.27271981
## 535   0.268690958 0.3223855 0.9544236  0.2768091 0.482223659  0.27271981
## 847   0.268690958 0.3223855 0.9544236  0.2768091 0.482223659  0.27271981
## 1217  0.268690958 0.3223855 0.9544236  0.2768091 0.482223659  0.27271981
## 312   0.265182186 0.3212748 0.9539295  0.2752043 0.480980013  0.27014677
## 447   0.265182186 0.3212748 0.9539295  0.2752043 0.480980013  0.27014677
## 1087  0.265182186 0.3212748 0.9539295  0.2752043 0.480980013  0.27014677
## 1308  0.265182186 0.3212748 0.9539295  0.2752043 0.480980013  0.27014677
## 44    0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 89    0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 273   0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 452   0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 517   0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 555   0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 584   0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 773   0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 1130  0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 1285  0.256410256 0.3185312 0.9526462  0.2711774 0.477898783  0.26369048
## 133   0.255465587 0.3180272 0.9548023  0.2728295 0.477650064  0.26400481
## 192   0.255465587 0.3180272 0.9548023  0.2728295 0.477650064  0.26400481
## 739   0.255465587 0.3180272 0.9548023  0.2728295 0.477650064  0.26400481
## 924   0.255465587 0.3180272 0.9548023  0.2728295 0.477650064  0.26400481
## 1479  0.255465587 0.3180272 0.9548023  0.2728295 0.477650064  0.26400481
## 164   0.253643725 0.3172589 0.9568966  0.2741554 0.477099237  0.26370022
## 165   0.253643725 0.3172589 0.9568966  0.2741554 0.477099237  0.26370022
## 244   0.253643725 0.3172589 0.9568966  0.2741554 0.477099237  0.26370022
## 898   0.253643725 0.3172589 0.9568966  0.2741554 0.477099237  0.26370022
## 1011  0.253643725 0.3172589 0.9568966  0.2741554 0.477099237  0.26370022
## 1151  0.253643725 0.3172589 0.9568966  0.2741554 0.477099237  0.26370022
## 88    0.248380567 0.3156566 0.9561404  0.2717969 0.475285171  0.25982508
## 339   0.248380567 0.3156566 0.9561404  0.2717969 0.475285171  0.25982508
## 765   0.248380567 0.3156566 0.9561404  0.2717969 0.475285171  0.25982508
## 912   0.248380567 0.3156566 0.9561404  0.2717969 0.475285171  0.25982508
## 1192  0.248380567 0.3156566 0.9561404  0.2717969 0.475285171  0.25982508
## 1379  0.248380567 0.3156566 0.9561404  0.2717969 0.475285171  0.25982508
## 171   0.243117409 0.3140704 0.9553571  0.2694275 0.473484848  0.25593459
## 184   0.243117409 0.3140704 0.9553571  0.2694275 0.473484848  0.25593459
## 227   0.243117409 0.3140704 0.9553571  0.2694275 0.473484848  0.25593459
## 561   0.243117409 0.3140704 0.9553571  0.2694275 0.473484848  0.25593459
## 1074  0.243117409 0.3140704 0.9553571  0.2694275 0.473484848  0.25593459
## 1163  0.243117409 0.3140704 0.9553571  0.2694275 0.473484848  0.25593459
## 10    0.237854251 0.3125000 0.9545455  0.2670455 0.471698113  0.25202757
## 375   0.237854251 0.3125000 0.9545455  0.2670455 0.471698113  0.25202757
## 384   0.237854251 0.3125000 0.9545455  0.2670455 0.471698113  0.25202757
## 436   0.237854251 0.3125000 0.9545455  0.2670455 0.471698113  0.25202757
## 843   0.237854251 0.3125000 0.9545455  0.2670455 0.471698113  0.25202757
## 1126  0.237854251 0.3125000 0.9545455  0.2670455 0.471698113  0.25202757
## 137   0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 315   0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 467   0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 868   0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 886   0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 1256  0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 1406  0.238596491 0.3123447 0.9597523  0.2720970 0.472135254  0.25479675
## 582   0.235087719 0.3113130 0.9592476  0.2705606 0.470955653  0.25220126
## 1111  0.235087719 0.3113130 0.9592476  0.2705606 0.470955653  0.25220126
## 1331  0.235087719 0.3113130 0.9592476  0.2705606 0.470955653  0.25220126
## 1451  0.235087719 0.3113130 0.9592476  0.2705606 0.470955653  0.25220126
## 212   0.230701754 0.3100329 0.9585987  0.2686316 0.469489415  0.24894535
## 250   0.230701754 0.3100329 0.9585987  0.2686316 0.469489415  0.24894535
## 258   0.230701754 0.3100329 0.9585987  0.2686316 0.469489415  0.24894535
## 489   0.230701754 0.3100329 0.9585987  0.2686316 0.469489415  0.24894535
## 1397  0.230701754 0.3100329 0.9585987  0.2686316 0.469489415  0.24894535
## 449   0.227192982 0.3090164 0.9580645  0.2670809 0.468322981  0.24633089
## 524   0.227192982 0.3090164 0.9580645  0.2670809 0.468322981  0.24633089
## 968   0.227192982 0.3090164 0.9580645  0.2670809 0.468322981  0.24633089
## 1183  0.227192982 0.3090164 0.9580645  0.2670809 0.468322981  0.24633089
## 98    0.224561404 0.3082584 0.9576547  0.2659131 0.467451953  0.24436411
## 337   0.224561404 0.3082584 0.9576547  0.2659131 0.467451953  0.24436411
## 817   0.224561404 0.3082584 0.9576547  0.2659131 0.467451953  0.24436411
## 302   0.221052632 0.3072535 0.9570957  0.2643492 0.466295609  0.24173349
## 416   0.221052632 0.3072535 0.9570957  0.2643492 0.466295609  0.24173349
## 654   0.221052632 0.3072535 0.9570957  0.2643492 0.466295609  0.24173349
## 1429  0.221052632 0.3072535 0.9570957  0.2643492 0.466295609  0.24173349
## 105   0.220107962 0.3068182 0.9597315  0.2665497 0.466091245  0.24221832
## 253   0.220107962 0.3068182 0.9597315  0.2665497 0.466091245  0.24221832
## 1108  0.220107962 0.3068182 0.9597315  0.2665497 0.466091245  0.24221832
## 1127  0.220107962 0.3068182 0.9597315  0.2665497 0.466091245  0.24221832
## 1442  0.220107962 0.3068182 0.9597315  0.2665497 0.466091245  0.24221832
## 284   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 336   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 387   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 432   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 676   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 800   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 870   0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 1159  0.213090418 0.3048387 0.9586207  0.2634594 0.463803681  0.23694023
## 170   0.212145749 0.3044177 0.9614035  0.2658212 0.463608563  0.23747175
## 216   0.212145749 0.3044177 0.9614035  0.2658212 0.463608563  0.23747175
## 238   0.212145749 0.3044177 0.9614035  0.2658212 0.463608563  0.23747175
## 1140  0.212145749 0.3044177 0.9614035  0.2658212 0.463608563  0.23747175
## 1371  0.212145749 0.3044177 0.9614035  0.2658212 0.463608563  0.23747175
## 141   0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 211   0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 377   0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 448   0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 819   0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 1022  0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 1145  0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 1167  0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 1417  0.211133603 0.3038278 0.9673913  0.2712191 0.463503650  0.23929784
## 48    0.205870445 0.3023810 0.9666667  0.2690476 0.461818182  0.23534858
## 457   0.205870445 0.3023810 0.9666667  0.2690476 0.461818182  0.23534858
## 873   0.205870445 0.3023810 0.9666667  0.2690476 0.461818182  0.23534858
## 975   0.205870445 0.3023810 0.9666667  0.2690476 0.461818182  0.23534858
## 1378  0.205870445 0.3023810 0.9666667  0.2690476 0.461818182  0.23534858
## 1431  0.205870445 0.3023810 0.9666667  0.2690476 0.461818182  0.23534858
## 41    0.204048583 0.3017378 0.9696970  0.2714347 0.461352657  0.23534203
## 433   0.204048583 0.3017378 0.9696970  0.2714347 0.461352657  0.23534203
## 666   0.204048583 0.3017378 0.9696970  0.2714347 0.461352657  0.23534203
## 684   0.204048583 0.3017378 0.9696970  0.2714347 0.461352657  0.23534203
## 1113  0.204048583 0.3017378 0.9696970  0.2714347 0.461352657  0.23534203
## 1269  0.204048583 0.3017378 0.9696970  0.2714347 0.461352657  0.23534203
## 242   0.198785425 0.3003145 0.9689922  0.2693067 0.459687124  0.23137470
## 453   0.198785425 0.3003145 0.9689922  0.2693067 0.459687124  0.23137470
## 770   0.198785425 0.3003145 0.9689922  0.2693067 0.459687124  0.23137470
## 1029  0.198785425 0.3003145 0.9689922  0.2693067 0.459687124  0.23137470
## 1400  0.198785425 0.3003145 0.9689922  0.2693067 0.459687124  0.23137470
## 1500  0.198785425 0.3003145 0.9689922  0.2693067 0.459687124  0.23137470
## 115   0.193522267 0.2989045 0.9682540  0.2671585 0.458033573  0.22737880
## 139   0.193522267 0.2989045 0.9682540  0.2671585 0.458033573  0.22737880
## 351   0.193522267 0.2989045 0.9682540  0.2671585 0.458033573  0.22737880
## 749   0.193522267 0.2989045 0.9682540  0.2671585 0.458033573  0.22737880
## 1175  0.193522267 0.2989045 0.9682540  0.2671585 0.458033573  0.22737880
## 1405  0.193522267 0.2989045 0.9682540  0.2671585 0.458033573  0.22737880
## 169   0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 513   0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 603   0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 678   0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 777   0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 1238  0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 1369  0.190823212 0.2980545 0.9714286  0.2694830 0.457313433  0.22676777
## 142   0.189946019 0.2978227 0.9713115  0.2691342 0.457040573  0.22609946
## 827   0.189001350 0.2974438 0.9748954  0.2723392 0.456870910  0.22687548
## 1133  0.189001350 0.2974438 0.9748954  0.2723392 0.456870910  0.22687548
## 1201  0.189001350 0.2974438 0.9748954  0.2723392 0.456870910  0.22687548
## 1258  0.189001350 0.2974438 0.9748954  0.2723392 0.456870910  0.22687548
## 1434  0.189001350 0.2974438 0.9748954  0.2723392 0.456870910  0.22687548
## 825   0.184615385 0.2962963 0.9743590  0.2706553 0.455516014  0.22353328
## 1281  0.184615385 0.2962963 0.9743590  0.2706553 0.455516014  0.22353328
## 1287  0.184615385 0.2962963 0.9743590  0.2706553 0.455516014  0.22353328
## 1496  0.184615385 0.2962963 0.9743590  0.2706553 0.455516014  0.22353328
## 1497  0.184615385 0.2962963 0.9743590  0.2706553 0.455516014  0.22353328
## 42    0.181106613 0.2953846 0.9739130  0.2692977 0.454437870  0.22084290
## 113   0.181106613 0.2953846 0.9739130  0.2692977 0.454437870  0.22084290
## 118   0.181106613 0.2953846 0.9739130  0.2692977 0.454437870  0.22084290
## 999   0.181106613 0.2953846 0.9739130  0.2692977 0.454437870  0.22084290
## 350   0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 750   0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 840   0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 938   0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 1089  0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 1304  0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 1314  0.174966262 0.2938026 0.9730942  0.2668968 0.452563347  0.21609704
## 116   0.170580297 0.2926829 0.9724771  0.2651600 0.451233843  0.21267597
## 267   0.170580297 0.2926829 0.9724771  0.2651600 0.451233843  0.21267597
## 625   0.170580297 0.2926829 0.9724771  0.2651600 0.451233843  0.21267597
## 775   0.170580297 0.2926829 0.9724771  0.2651600 0.451233843  0.21267597
## 903   0.170580297 0.2926829 0.9724771  0.2651600 0.451233843  0.21267597
## 69    0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 187   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 338   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 560   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 658   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 810   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 835   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 866   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 872   0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 1252  0.161808367 0.2904690 0.9711538  0.2616228 0.448598131  0.20574927
## 167   0.158299595 0.2895928 0.9705882  0.2601810 0.447552448  0.20294469
## 833   0.158299595 0.2895928 0.9705882  0.2601810 0.447552448  0.20294469
## 910   0.158299595 0.2895928 0.9705882  0.2601810 0.447552448  0.20294469
## 970   0.158299595 0.2895928 0.9705882  0.2601810 0.447552448  0.20294469
## 8     0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 501   0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 724   0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 1086  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 1181  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 1199  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 1363  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 1364  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 1457  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232  0.20555160
## 64    0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 84    0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 270   0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 353   0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 578   0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 581   0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 704   0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 902   0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 1064  0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 1251  0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 1462  0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 1471  0.146761134 0.2865627 0.9781421  0.2647048 0.444444444  0.19709992
## 16    0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 71    0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 119   0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 280   0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 450   0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 649   0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 650   0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 735   0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 1059  0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 1112  0.137989204 0.2844510 0.9768786  0.2613296 0.441900401  0.18989646
## 173   0.139608637 0.2846662 0.9880240  0.2726901 0.442669709  0.19511509
## 550   0.139608637 0.2846662 0.9880240  0.2726901 0.442669709  0.19511509
## 616   0.139608637 0.2846662 0.9880240  0.2726901 0.442669709  0.19511509
## 1067  0.139608637 0.2846662 0.9880240  0.2726901 0.442669709  0.19511509
## 1300  0.139608637 0.2846662 0.9880240  0.2726901 0.442669709  0.19511509
## 1418  0.139608637 0.2846662 0.9880240  0.2726901 0.442669709  0.19511509
## 135   0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 443   0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 553   0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 583   0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 891   0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 1090  0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 1216  0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 1276  0.132591093 0.2830051 0.9874214  0.2704265 0.440658717  0.18935719
## 327   0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 355   0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 455   0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 456   0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 751   0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 1205  0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 1345  0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 1458  0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 1460  0.124696356 0.2811594 0.9866667  0.2678261 0.438418079  0.18274829
## 522   0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 526   0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 743   0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 774   0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 916   0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 962   0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 1213  0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 1273  0.117678812 0.2795389 0.9859155  0.2654544 0.436445444  0.17674376
## 190   0.113292848 0.2785355 0.9854015  0.2639370 0.435221537  0.17292245
## 239   0.113292848 0.2785355 0.9854015  0.2639370 0.435221537  0.17292245
## 1131  0.113292848 0.2785355 0.9854015  0.2639370 0.435221537  0.17292245
## 1218  0.113292848 0.2785355 0.9854015  0.2639370 0.435221537  0.17292245
## 1383  0.113292848 0.2785355 0.9854015  0.2639370 0.435221537  0.17292245
## 75    0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 99    0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 531   0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 913   0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 1147  0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 1161  0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 1402  0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 1426  0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 1463  0.105398111 0.2767475 0.9843750  0.2611225 0.433035714  0.16589701
## 143   0.101889339 0.2759602 0.9838710  0.2598311 0.432071269  0.16270840
## 985   0.101889339 0.2759602 0.9838710  0.2598311 0.432071269  0.16270840
## 1146  0.101889339 0.2759602 0.9838710  0.2598311 0.432071269  0.16270840
## 1478  0.101889339 0.2759602 0.9838710  0.2598311 0.432071269  0.16270840
## 155   0.096626181 0.2747875 0.9830508  0.2578384 0.430632630  0.15784150
## 626   0.096626181 0.2747875 0.9830508  0.2578384 0.430632630  0.15784150
## 721   0.096626181 0.2747875 0.9830508  0.2578384 0.430632630  0.15784150
## 918   0.096626181 0.2747875 0.9830508  0.2578384 0.430632630  0.15784150
## 1231  0.096626181 0.2747875 0.9830508  0.2578384 0.430632630  0.15784150
## 1329  0.096626181 0.2747875 0.9830508  0.2578384 0.430632630  0.15784150
## 34    0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 76    0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 144   0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 415   0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 473   0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 519   0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 604   0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 1184  0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 1423  0.088731444 0.2730471 0.9816514  0.2546985 0.428492546  0.15033219
## 181   0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 329   0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 834   0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 941   0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 998   0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 1003  0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 1132  0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 1382  0.081713900 0.2715185 0.9801980  0.2517166 0.426608026  0.14341807
## 26    0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 418   0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 820   0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 844   0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 845   0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 1088  0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 1357  0.075573549 0.2701950 0.9787234  0.2489184 0.424972618  0.13715555
## 96    0.072064777 0.2694444 0.9777778  0.2472222 0.424043716  0.13347664
## 379   0.072064777 0.2694444 0.9777778  0.2472222 0.424043716  0.13347664
## 478   0.072064777 0.2694444 0.9777778  0.2472222 0.424043716  0.13347664
## 686   0.072064777 0.2694444 0.9777778  0.2472222 0.424043716  0.13347664
## 12    0.067678812 0.2685121 0.9764706  0.2449827 0.422888283  0.12876389
## 59    0.067678812 0.2685121 0.9764706  0.2449827 0.422888283  0.12876389
## 138   0.067678812 0.2685121 0.9764706  0.2449827 0.422888283  0.12876389
## 172   0.067678812 0.2685121 0.9764706  0.2449827 0.422888283  0.12876389
## 1353  0.067678812 0.2685121 0.9764706  0.2449827 0.422888283  0.12876389
## 637   0.067611336 0.2684610 0.9876543  0.2561153 0.423056009  0.13159141
## 801   0.067611336 0.2684610 0.9876543  0.2561153 0.423056009  0.13159141
## 1134  0.067611336 0.2684610 0.9876543  0.2561153 0.423056009  0.13159141
## 1386  0.067611336 0.2684610 0.9876543  0.2561153 0.423056009  0.13159141
## 140   0.062348178 0.2673540 0.9866667  0.2540206 0.421680217  0.12584801
## 430   0.062348178 0.2673540 0.9866667  0.2540206 0.421680217  0.12584801
## 703   0.062348178 0.2673540 0.9866667  0.2540206 0.421680217  0.12584801
## 764   0.062348178 0.2673540 0.9866667  0.2540206 0.421680217  0.12584801
## 909   0.062348178 0.2673540 0.9866667  0.2540206 0.421680217  0.12584801
## 1323  0.062348178 0.2673540 0.9866667  0.2540206 0.421680217  0.12584801
## 772   0.062280702 0.2673064 1.0000000  0.2673064 0.421849648  0.12902724
## 1109  0.062280702 0.2673064 1.0000000  0.2673064 0.421849648  0.12902724
## 1268  0.062280702 0.2673064 1.0000000  0.2673064 0.421849648  0.12902724
## 1503  0.062280702 0.2673064 1.0000000  0.2673064 0.421849648  0.12902724
## 492   0.059649123 0.2667579 1.0000000  0.2667579 0.421166307  0.12614227
## 562   0.059649123 0.2667579 1.0000000  0.2667579 0.421166307  0.12614227
## 661   0.059649123 0.2667579 1.0000000  0.2667579 0.421166307  0.12614227
## 77    0.057894737 0.2663934 1.0000000  0.2663934 0.420711974  0.12418848
## 401   0.057894737 0.2663934 1.0000000  0.2663934 0.420711974  0.12418848
## 78    0.053508772 0.2654867 1.0000000  0.2654867 0.419580420  0.11918837
## 340   0.053508772 0.2654867 1.0000000  0.2654867 0.419580420  0.11918837
## 1045  0.053508772 0.2654867 1.0000000  0.2654867 0.419580420  0.11918837
## 1143  0.053508772 0.2654867 1.0000000  0.2654867 0.419580420  0.11918837
## 1484  0.053508772 0.2654867 1.0000000  0.2654867 0.419580420  0.11918837
## 97    0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 454   0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 514   0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 752   0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 871   0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 1189  0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 1206  0.047368421 0.2642276 1.0000000  0.2642276 0.418006431  0.11187514
## 18    0.043859649 0.2635135 1.0000000  0.2635135 0.417112299  0.10750633
## 818   0.043859649 0.2635135 1.0000000  0.2635135 0.417112299  0.10750633
## 1244  0.043859649 0.2635135 1.0000000  0.2635135 0.417112299  0.10750633
## 1327  0.043859649 0.2635135 1.0000000  0.2635135 0.417112299  0.10750633
## 134   0.042105263 0.2631579 1.0000000  0.2631579 0.416666667  0.10526316
## 185   0.042105263 0.2631579 1.0000000  0.2631579 0.416666667  0.10526316
## 161   0.038596491 0.2624495 1.0000000  0.2624495 0.415778252  0.10064607
## 480   0.038596491 0.2624495 1.0000000  0.2624495 0.415778252  0.10064607
## 529   0.038596491 0.2624495 1.0000000  0.2624495 0.415778252  0.10064607
## 1385  0.038596491 0.2624495 1.0000000  0.2624495 0.415778252  0.10064607
## 32    0.034210526 0.2615694 1.0000000  0.2615694 0.414673046  0.09459613
## 282   0.034210526 0.2615694 1.0000000  0.2615694 0.414673046  0.09459613
## 490   0.034210526 0.2615694 1.0000000  0.2615694 0.414673046  0.09459613
## 491   0.034210526 0.2615694 1.0000000  0.2615694 0.414673046  0.09459613
## 700   0.034210526 0.2615694 1.0000000  0.2615694 0.414673046  0.09459613
## 14    0.030701754 0.2608696 1.0000000  0.2608696 0.413793103  0.08949387
## 19    0.030701754 0.2608696 1.0000000  0.2608696 0.413793103  0.08949387
## 534   0.030701754 0.2608696 1.0000000  0.2608696 0.413793103  0.08949387
## 1529  0.030701754 0.2608696 1.0000000  0.2608696 0.413793103  0.08949387
## 311   0.026315789 0.2600000 1.0000000  0.2600000 0.412698413  0.08271702
## 502   0.026315789 0.2600000 1.0000000  0.2600000 0.412698413  0.08271702
## 1236  0.026315789 0.2600000 1.0000000  0.2600000 0.412698413  0.08271702
## 1241  0.026315789 0.2600000 1.0000000  0.2600000 0.412698413  0.08271702
## 1501  0.026315789 0.2600000 1.0000000  0.2600000 0.412698413  0.08271702
## 108   0.021929825 0.2591362 1.0000000  0.2591362 0.411609499  0.07538443
## 1129  0.021929825 0.2591362 1.0000000  0.2591362 0.411609499  0.07538443
## 1356  0.021929825 0.2591362 1.0000000  0.2591362 0.411609499  0.07538443
## 1410  0.021929825 0.2591362 1.0000000  0.2591362 0.411609499  0.07538443
## 1425  0.021929825 0.2591362 1.0000000  0.2591362 0.411609499  0.07538443
## 698   0.019298246 0.2586207 1.0000000  0.2586207 0.410958904  0.07064648
## 1037  0.019298246 0.2586207 1.0000000  0.2586207 0.410958904  0.07064648
## 1360  0.019298246 0.2586207 1.0000000  0.2586207 0.410958904  0.07064648
## 82    0.016666667 0.2581072 1.0000000  0.2581072 0.410310363  0.06558801
## 1110  0.016666667 0.2581072 1.0000000  0.2581072 0.410310363  0.06558801
## 1237  0.016666667 0.2581072 1.0000000  0.2581072 0.410310363  0.06558801
## 1186  0.015789474 0.2579365 1.0000000  0.2579365 0.410094637  0.06381757
## 434   0.012280702 0.2572559 1.0000000  0.2572559 0.409233998  0.05620750
## 530   0.012280702 0.2572559 1.0000000  0.2572559 0.409233998  0.05620750
## 533   0.012280702 0.2572559 1.0000000  0.2572559 0.409233998  0.05620750
## 1401  0.012280702 0.2572559 1.0000000  0.2572559 0.409233998  0.05620750
## 476   0.008771930 0.2565789 1.0000000  0.2565789 0.408376963  0.04744146
## 556   0.008771930 0.2565789 1.0000000  0.2565789 0.408376963  0.04744146
## 1347  0.008771930 0.2565789 1.0000000  0.2565789 0.408376963  0.04744146
## 1414  0.008771930 0.2565789 1.0000000  0.2565789 0.408376963  0.04744146
## 1070  0.007894737 0.2564103 1.0000000  0.2564103 0.408163265  0.04499213
## 380   0.006140351 0.2560735 1.0000000  0.2560735 0.407736539  0.03965326
## 1036  0.006140351 0.2560735 1.0000000  0.2560735 0.407736539  0.03965326
## 1240  0.005263158 0.2559055 1.0000000  0.2559055 0.407523511  0.03669974
## 1502  0.004385965 0.2557377 1.0000000  0.2557377 0.407310705  0.03349114
## 31    0.002631579 0.2554028 1.0000000  0.2554028 0.406885759  0.02592513
## 356   0.002631579 0.2554028 1.0000000  0.2554028 0.406885759  0.02592513
## 210   0.000877193 0.2550687 1.0000000  0.2550687 0.406461699  0.01495809
## 1278  0.000877193 0.2550687 1.0000000  0.2550687 0.406461699  0.01495809
## 602   0.000000000 0.2549020 0.0000000        NaN 0.406250000         NaN
##              FPR           PG          RG
## 1103 0.000877193 0.0000000000 0.000000000
## 1338 0.000877193 0.1644736842 0.000000000
## 878  0.000877193 0.3684210526 0.000000000
## 1270 0.000877193 0.4983552632 0.000000000
## 1047 0.000877193 0.5852631579 0.000000000
## 1325 0.001754386 0.3684210526 0.000000000
## 1027 0.001754386 0.4403866810 0.000000000
## 122  0.001754386 0.4983552632 0.000000000
## 563  0.001754386 0.5852631579 0.000000000
## 1024 0.001754386 0.5852631579 0.000000000
## 808  0.001754386 0.6185297956 0.000000000
## 1367 0.001754386 0.6469298246 0.000000000
## 936  0.001754386 0.6714419184 0.000000000
## 79   0.001754386 0.6928034372 0.000000000
## 883  0.001754386 0.7115789474 0.000000000
## 158  0.002631579 0.6284829721 0.000000000
## 1021 0.002631579 0.6284829721 0.000000000
## 129  0.002631579 0.6469298246 0.000000000
## 907  0.003508772 0.5664090975 0.000000000
## 1106 0.004385965 0.5184389545 0.000000000
## 1515 0.004385965 0.5184389545 0.000000000
## 1198 0.004385965 0.5370269682 0.000000000
## 221  0.004385965 0.5542732066 0.000000000
## 783  0.004385965 0.5703125000 0.000000000
## 1507 0.004385965 0.5852631579 0.000000000
## 564  0.004385965 0.5992292121 0.000000000
## 81   0.004385965 0.6245636412 0.000000000
## 123  0.004385965 0.6245636412 0.000000000
## 441  0.006140351 0.5395695274 0.000000000
## 887  0.006140351 0.5395695274 0.000000000
## 1395 0.006140351 0.5395695274 0.000000000
## 389  0.006140351 0.5635783674 0.000000000
## 439  0.006140351 0.5635783674 0.000000000
## 1155 0.006140351 0.5852631579 0.000000000
## 1370 0.006140351 0.5852631579 0.000000000
## 460  0.006140351 0.5953338207 0.000000000
## 651  0.007017544 0.5664090975 0.000000000
## 786  0.007017544 0.5664090975 0.000000000
## 1368 0.007017544 0.5760406934 0.000000000
## 656  0.007894737 0.5505494850 0.000000000
## 1333 0.007894737 0.5505494850 0.000000000
## 908  0.007894737 0.5597475832 0.000000000
## 219  0.007894737 0.5685861490 0.000000000
## 195  0.007894737 0.5770851457 0.000000000
## 264  0.008771930 0.5542732066 0.000000000
## 1289 0.008771930 0.5542732066 0.000000000
## 52   0.010526316 0.5232198142 0.000000000
## 226  0.010526316 0.5232198142 0.000000000
## 468  0.010526316 0.5232198142 0.000000000
## 822  0.010526316 0.5232198142 0.000000000
## 1096 0.010526316 0.5232198142 0.000000000
## 1294 0.010526316 0.5385134249 0.000000000
## 1436 0.010526316 0.5385134249 0.000000000
## 569  0.012280702 0.4983552632 0.000000000
## 900  0.012280702 0.4983552632 0.000000000
## 1420 0.012280702 0.4983552632 0.000000000
## 567  0.012280702 0.5128606296 0.000000000
## 645  0.012280702 0.5128606296 0.000000000
## 715  0.012280702 0.5198143304 0.000000000
## 365  0.012280702 0.5395695274 0.000000000
## 566  0.012280702 0.5395695274 0.000000000
## 1343 0.012280702 0.5395695274 0.000000000
## 538  0.013157895 0.5309872314 0.000000000
## 942  0.013157895 0.5309872314 0.000000000
## 1295 0.013157895 0.5309872314 0.000000000
## 409  0.014035088 0.5172292504 0.000000000
## 1448 0.014035088 0.5172292504 0.000000000
## 892  0.014912281 0.5103598281 0.000000000
## 1026 0.014912281 0.5103598281 0.000000000
## 1121 0.014912281 0.5103598281 0.000000000
## 224  0.014912281 0.5161569864 0.000000000
## 462  0.014912281 0.5273626927 0.000000000
## 809  0.014912281 0.5273626927 0.000000000
## 198  0.016666667 0.5091222880 0.000000000
## 330  0.016666667 0.5091222880 0.000000000
## 930  0.016666667 0.5091222880 0.000000000
## 1227 0.016666667 0.5091222880 0.000000000
## 1517 0.016666667 0.5091222880 0.000000000
## 754  0.017543860 0.4983552632 0.000000000
## 1079 0.017543860 0.4983552632 0.000000000
## 539  0.017543860 0.5035256179 0.000000000
## 1224 0.017543860 0.5085945083 0.000000000
## 1447 0.017543860 0.5135647218 0.000000000
## 1197 0.017543860 0.5184389545 0.000000000
## 1091 0.018421053 0.5081160514 0.000000000
## 1445 0.018421053 0.5081160514 0.000000000
## 660  0.020175439 0.4795393378 0.000000000
## 756  0.020175439 0.4795393378 0.000000000
## 614  0.020175439 0.4891130604 0.000000000
## 1008 0.020175439 0.4891130604 0.000000000
## 769  0.021929825 0.4673859467 0.000000000
## 1101 0.021929825 0.4673859467 0.000000000
## 1470 0.021929825 0.4673859467 0.000000000
## 1455 0.022807018 0.4548616902 0.000000000
## 1464 0.023684211 0.4474455181 0.000000000
## 1506 0.023684211 0.4474455181 0.000000000
## 321  0.023684211 0.4565997720 0.000000000
## 855  0.023684211 0.4565997720 0.000000000
## 196  0.023684211 0.4610700304 0.000000000
## 326  0.025438596 0.4425954592 0.000000000
## 549  0.025438596 0.4425954592 0.000000000
## 738  0.025438596 0.4425954592 0.000000000
## 466  0.025438596 0.4469640970 0.000000000
## 126  0.026315789 0.4446422214 0.000000000
## 714  0.026315789 0.4446422214 0.000000000
## 1489 0.026315789 0.4446422214 0.000000000
## 1138 0.027192982 0.4340990480 0.000000000
## 1051 0.027192982 0.4383054473 0.000000000
## 149  0.028070175 0.4363410352 0.000000000
## 309  0.028070175 0.4363410352 0.000000000
## 955  0.028070175 0.4363410352 0.000000000
## 318  0.029824561 0.4208582398 0.000000000
## 410  0.029824561 0.4208582398 0.000000000
## 683  0.029824561 0.4208582398 0.000000000
## 1226 0.030701754 0.4155121566 0.000000000
## 1274 0.030701754 0.4155121566 0.000000000
## 906  0.031578947 0.4064154469 0.000000000
## 989  0.033333333 0.3889555822 0.000000000
## 1312 0.033333333 0.3889555822 0.000000000
## 331  0.035964912 0.3644765131 0.000000000
## 668  0.035964912 0.3644765131 0.000000000
## 960  0.035964912 0.3644765131 0.000000000
## 110  0.036842105 0.3645709474 0.000000000
## 543  0.036842105 0.3645709474 0.000000000
## 606  0.036842105 0.3645709474 0.000000000
## 1302 0.036842105 0.3684210526 0.000000000
## 572  0.036842105 0.3722291655 0.000000000
## 3    0.039473684 0.3538286016 0.000000000
## 796  0.039473684 0.3538286016 0.000000000
## 958  0.039473684 0.3538286016 0.000000000
## 1508 0.039473684 0.3538286016 0.000000000
## 114  0.042982456 0.3267143167 0.000000000
## 1031 0.042982456 0.3267143167 0.000000000
## 1137 0.042982456 0.3267143167 0.000000000
## 1490 0.042982456 0.3267143167 0.000000000
## 426  0.043859649 0.3275959274 0.000000000
## 465  0.043859649 0.3275959274 0.000000000
## 781  0.043859649 0.3275959274 0.000000000
## 9    0.045614035 0.3152309345 0.000000000
## 927  0.045614035 0.3152309345 0.000000000
## 147  0.045614035 0.3257938234 0.000000000
## 851  0.045614035 0.3257938234 0.000000000
## 1228 0.045614035 0.3257938234 0.000000000
## 788  0.045614035 0.3292519493 0.000000000
## 1513 0.045614035 0.3326791414 0.000000000
## 112  0.046491228 0.3266449220 0.000000000
## 1120 0.047368421 0.3241176810 0.000000000
## 1230 0.047368421 0.3241176810 0.000000000
## 58   0.048245614 0.3216666667 0.000000000
## 322  0.048245614 0.3216666667 0.000000000
## 23   0.050000000 0.3137254902 0.000000000
## 205  0.050000000 0.3137254902 0.000000000
## 1444 0.050000000 0.3137254902 0.000000000
## 36   0.050877193 0.3179289861 0.000000000
## 947  0.050877193 0.3179289861 0.000000000
## 1116 0.050877193 0.3179289861 0.000000000
## 1433 0.050877193 0.3179289861 0.000000000
## 220  0.050877193 0.3365417948 0.005177515
## 395  0.050877193 0.3365417948 0.005177515
## 642  0.050877193 0.3365417948 0.005177515
## 856  0.050877193 0.3365417948 0.005177515
## 1009 0.050877193 0.3365417948 0.005177515
## 1117 0.050877193 0.3365417948 0.005177515
## 63   0.053508772 0.3265334094 0.007164435
## 358  0.053508772 0.3265334094 0.007164435
## 617  0.053508772 0.3265334094 0.007164435
## 784  0.053508772 0.3265334094 0.007164435
## 1372 0.053508772 0.3265334094 0.007164435
## 706  0.053508772 0.3323993808 0.009221945
## 717  0.053508772 0.3323993808 0.009221945
## 570  0.054385965 0.3358574796 0.012440569
## 725  0.054385965 0.3358574796 0.012440569
## 779  0.054385965 0.3358574796 0.012440569
## 1509 0.054385965 0.3358574796 0.012440569
## 121  0.054385965 0.3497821048 0.018157895
## 124  0.054385965 0.3497821048 0.018157895
## 299  0.054385965 0.3497821048 0.018157895
## 789  0.054385965 0.3497821048 0.018157895
## 1443 0.054385965 0.3497821048 0.018157895
## 1081 0.054385965 0.3552073309 0.020568359
## 1511 0.054385965 0.3552073309 0.020568359
## 1321 0.055263158 0.3500856431 0.020568359
## 102  0.056140351 0.3450543855 0.020568359
## 215  0.057017544 0.3401115250 0.020568359
## 727  0.058771930 0.3304831407 0.020568359
## 1107 0.058771930 0.3304831407 0.020568359
## 94   0.060526316 0.3238254366 0.021800062
## 464  0.060526316 0.3238254366 0.021800062
## 1259 0.060526316 0.3238254366 0.021800062
## 411  0.061403509 0.3245014391 0.024316412
## 470  0.061403509 0.3245014391 0.024316412
## 1094 0.061403509 0.3245014391 0.024316412
## 945  0.061403509 0.3270818998 0.025601059
## 500  0.063157895 0.3181937091 0.025601059
## 1381 0.063157895 0.3181937091 0.025601059
## 209  0.064035088 0.3164024623 0.026903353
## 1223 0.064035088 0.3164024623 0.026903353
## 95   0.065789474 0.3104440789 0.028223295
## 308  0.065789474 0.3104440789 0.028223295
## 925  0.065789474 0.3104440789 0.028223295
## 674  0.069298246 0.2967444190 0.029560884
## 744  0.069298246 0.2967444190 0.029560884
## 990  0.069298246 0.2967444190 0.029560884
## 1262 0.069298246 0.2967444190 0.029560884
## 1514 0.069298246 0.2967444190 0.029560884
## 705  0.069298246 0.2991954448 0.030916122
## 687  0.070175439 0.3049288390 0.036513547
## 877  0.070175439 0.3049288390 0.036513547
## 1006 0.070175439 0.3049288390 0.036513547
## 1082 0.070175439 0.3049288390 0.036513547
## 1292 0.070175439 0.3049288390 0.036513547
## 622  0.071929825 0.3019578150 0.039418146
## 839  0.071929825 0.3019578150 0.039418146
## 879  0.071929825 0.3019578150 0.039418146
## 1341 0.071929825 0.3019578150 0.039418146
## 85   0.074561404 0.2954409526 0.042393335
## 294  0.074561404 0.2954409526 0.042393335
## 816  0.074561404 0.2954409526 0.042393335
## 1388 0.074561404 0.2954409526 0.042393335
## 1407 0.074561404 0.2954409526 0.042393335
## 100  0.076315789 0.2905389315 0.043907402
## 518  0.076315789 0.2905389315 0.043907402
## 946  0.076315789 0.2905389315 0.043907402
## 157  0.077192982 0.2892756335 0.045439116
## 197  0.077192982 0.2892756335 0.045439116
## 952  0.078070175 0.2880370890 0.046988477
## 994  0.078070175 0.2880370890 0.046988477
## 324  0.080701754 0.2822845610 0.050140143
## 521  0.080701754 0.2822845610 0.050140143
## 541  0.080701754 0.2822845610 0.050140143
## 594  0.080701754 0.2822845610 0.050140143
## 760  0.080701754 0.2822845610 0.050140143
## 291  0.080701754 0.2844629764 0.051742448
## 404  0.083333333 0.2768252951 0.053362400
## 427  0.083333333 0.2768252951 0.053362400
## 899  0.083333333 0.2768252951 0.053362400
## 1362 0.083333333 0.2768252951 0.053362400
## 897  0.084210526 0.2757756158 0.055000000
## 1342 0.084210526 0.2757756158 0.055000000
## 13   0.085087719 0.2747451608 0.056655248
## 607  0.085087719 0.2747451608 0.056655248
## 1007 0.085087719 0.2768473717 0.058328143
## 588  0.087719298 0.2697016187 0.060018686
## 967  0.087719298 0.2697016187 0.060018686
## 1250 0.087719298 0.2697016187 0.060018686
## 1439 0.087719298 0.2697016187 0.060018686
## 720  0.088596491 0.2687591564 0.061726876
## 859  0.088596491 0.2687591564 0.061726876
## 360  0.089473684 0.2678332632 0.063452715
## 719  0.089473684 0.2678332632 0.063452715
## 213  0.092105263 0.2651507729 0.068736115
## 296  0.092105263 0.2651507729 0.068736115
## 304  0.092105263 0.2651507729 0.068736115
## 482  0.092105263 0.2651507729 0.068736115
## 932  0.092105263 0.2651507729 0.068736115
## 1025 0.092105263 0.2651507729 0.068736115
## 675  0.094736842 0.2586982249 0.070532544
## 753  0.094736842 0.2586982249 0.070532544
## 1010 0.094736842 0.2586982249 0.070532544
## 1033 0.094736842 0.2586982249 0.070532544
## 127  0.096491228 0.2571271930 0.074178345
## 644  0.096491228 0.2571271930 0.074178345
## 929  0.096491228 0.2571271930 0.074178345
## 1221 0.096491228 0.2571271930 0.074178345
## 486  0.099122807 0.2567510332 0.081681719
## 634  0.099122807 0.2567510332 0.081681719
## 681  0.099122807 0.2567510332 0.081681719
## 815  0.099122807 0.2567510332 0.081681719
## 1052 0.099122807 0.2567510332 0.081681719
## 1248 0.099122807 0.2567510332 0.081681719
## 1409 0.099122807 0.2567510332 0.081681719
## 950  0.099122807 0.2586288216 0.083601682
## 1438 0.099122807 0.2623618593 0.087494550
## 1441 0.099122807 0.2623618593 0.087494550
## 787  0.101754386 0.2545561926 0.087494550
## 1004 0.101754386 0.2545561926 0.087494550
## 1380 0.101754386 0.2545561926 0.087494550
## 1437 0.101754386 0.2563940517 0.089467456
## 403  0.104385965 0.2488430331 0.089467456
## 596  0.104385965 0.2488430331 0.089467456
## 1055 0.104385965 0.2488430331 0.089467456
## 782  0.104385965 0.2506562071 0.091458009
## 475  0.107017544 0.2433474267 0.091458009
## 1282 0.107017544 0.2433474267 0.091458009
## 1315 0.107017544 0.2433474267 0.091458009
## 43   0.108771930 0.2403904727 0.093466210
## 111  0.108771930 0.2403904727 0.093466210
## 1505 0.108771930 0.2403904727 0.093466210
## 392  0.110526316 0.2427497315 0.101675491
## 643  0.110526316 0.2427497315 0.101675491
## 852  0.110526316 0.2427497315 0.101675491
## 1085 0.110526316 0.2427497315 0.101675491
## 1173 0.110526316 0.2427497315 0.101675491
## 1518 0.110526316 0.2427497315 0.101675491
## 440  0.112280702 0.2467237785 0.112334164
## 459  0.112280702 0.2467237785 0.112334164
## 557  0.112280702 0.2467237785 0.112334164
## 630  0.112280702 0.2467237785 0.112334164
## 1019 0.112280702 0.2467237785 0.112334164
## 1432 0.112280702 0.2467237785 0.112334164
## 1491 0.112280702 0.2467237785 0.112334164
## 421  0.114912281 0.2399570250 0.112334164
## 1032 0.114912281 0.2399570250 0.112334164
## 1487 0.114912281 0.2399570250 0.112334164
## 293  0.115789474 0.2410886951 0.116721167
## 1104 0.115789474 0.2410886951 0.116721167
## 1375 0.115789474 0.2410886951 0.116721167
## 191  0.117543860 0.2383745002 0.118941140
## 737  0.117543860 0.2383745002 0.118941140
## 1452 0.117543860 0.2383745002 0.118941140
## 278  0.119298246 0.2373556310 0.123434029
## 361  0.119298246 0.2373556310 0.123434029
## 587  0.119298246 0.2373556310 0.123434029
## 858  0.119298246 0.2373556310 0.123434029
## 20   0.121052632 0.2331409862 0.123434029
## 57   0.121052632 0.2331409862 0.123434029
## 1297 0.121052632 0.2347552049 0.125706945
## 249  0.125438596 0.2261519858 0.127997509
## 306  0.125438596 0.2261519858 0.127997509
## 362  0.125438596 0.2261519858 0.127997509
## 487  0.125438596 0.2261519858 0.127997509
## 525  0.125438596 0.2261519858 0.127997509
## 591  0.125438596 0.2261519858 0.127997509
## 937  0.127192982 0.2253443136 0.132631579
## 1058 0.127192982 0.2253443136 0.132631579
## 1413 0.127192982 0.2253443136 0.132631579
## 1516 0.127192982 0.2253443136 0.132631579
## 1267 0.127192982 0.2269039712 0.134975086
## 369  0.130701754 0.2207328239 0.137336240
## 961  0.130701754 0.2207328239 0.137336240
## 976  0.130701754 0.2207328239 0.137336240
## 1177 0.130701754 0.2207328239 0.137336240
## 1310 0.130701754 0.2207328239 0.137336240
## 72   0.132456140 0.2200215867 0.142111492
## 638  0.132456140 0.2200215867 0.142111492
## 1042 0.132456140 0.2200215867 0.142111492
## 1152 0.132456140 0.2200215867 0.142111492
## 281  0.133333333 0.2196726447 0.144525589
## 461  0.133333333 0.2196726447 0.144525589
## 423  0.135087719 0.2174974216 0.146957334
## 1043 0.135087719 0.2174974216 0.146957334
## 1522 0.135087719 0.2174974216 0.146957334
## 663  0.135964912 0.2156843886 0.146957334
## 203  0.136842105 0.2138887308 0.146957334
## 60   0.141228070 0.2080746098 0.151873767
## 354  0.141228070 0.2080746098 0.151873767
## 498  0.141228070 0.2080746098 0.151873767
## 631  0.141228070 0.2080746098 0.151873767
## 733  0.141228070 0.2080746098 0.151873767
## 895  0.141228070 0.2080746098 0.151873767
## 979  0.141228070 0.2080746098 0.151873767
## 206  0.143859649 0.2030067988 0.151873767
## 399  0.143859649 0.2030067988 0.151873767
## 1486 0.143859649 0.2030067988 0.151873767
## 363  0.145614035 0.2025562643 0.156860791
## 520  0.145614035 0.2025562643 0.156860791
## 1072 0.145614035 0.2025562643 0.156860791
## 1450 0.145614035 0.2025562643 0.156860791
## 136  0.148245614 0.1990976514 0.159380774
## 707  0.148245614 0.1990976514 0.159380774
## 814  0.148245614 0.1990976514 0.159380774
## 1243 0.148245614 0.1990976514 0.159380774
## 780  0.150000000 0.1973128167 0.161918405
## 1306 0.150000000 0.1973128167 0.161918405
## 1526 0.150000000 0.1973128167 0.161918405
## 806  0.151754386 0.2010589527 0.174871276
## 863  0.151754386 0.2010589527 0.174871276
## 894  0.151754386 0.2010589527 0.174871276
## 1100 0.151754386 0.2010589527 0.174871276
## 1196 0.151754386 0.2010589527 0.174871276
## 1319 0.151754386 0.2010589527 0.174871276
## 1519 0.151754386 0.2010589527 0.174871276
## 218  0.152631579 0.2035683865 0.182854770
## 334  0.152631579 0.2035683865 0.182854770
## 335  0.152631579 0.2035683865 0.182854770
## 609  0.152631579 0.2035683865 0.182854770
## 275  0.155263158 0.2002549570 0.185551230
## 348  0.155263158 0.2002549570 0.185551230
## 747  0.155263158 0.2002549570 0.185551230
## 790  0.155263158 0.2002549570 0.185551230
## 159  0.160526316 0.1925934360 0.188265338
## 166  0.160526316 0.1925934360 0.188265338
## 799  0.160526316 0.1925934360 0.188265338
## 830  0.160526316 0.1925934360 0.188265338
## 889  0.160526316 0.1925934360 0.188265338
## 1299 0.160526316 0.1925934360 0.188265338
## 1469 0.160526316 0.1925934360 0.188265338
## 636  0.162280702 0.1922957622 0.193746496
## 669  0.162280702 0.1922957622 0.193746496
## 1124 0.162280702 0.1922957622 0.193746496
## 1232 0.162280702 0.1922957622 0.193746496
## 716  0.163157895 0.1934385811 0.199298246
## 1017 0.163157895 0.1934385811 0.199298246
## 1415 0.163157895 0.1934385811 0.199298246
## 939  0.165789474 0.1891716710 0.199298246
## 987  0.165789474 0.1891716710 0.199298246
## 1376 0.165789474 0.1891716710 0.199298246
## 117  0.167543860 0.1876531250 0.202100592
## 292  0.167543860 0.1876531250 0.202100592
## 479  0.167543860 0.1876531250 0.202100592
## 50   0.170175439 0.1835489413 0.202100592
## 62   0.170175439 0.1835489413 0.202100592
## 1474 0.170175439 0.1835489413 0.202100592
## 551  0.171052632 0.1822033379 0.202100592
## 742  0.171929825 0.1821140247 0.204920585
## 1521 0.171929825 0.1821140247 0.204920585
## 613  0.172807018 0.1832623896 0.210613516
## 865  0.172807018 0.1832623896 0.210613516
## 1020 0.172807018 0.1832623896 0.210613516
## 307  0.176315789 0.1816806181 0.219285269
## 323  0.176315789 0.1816806181 0.219285269
## 367  0.176315789 0.1816806181 0.219285269
## 504  0.176315789 0.1816806181 0.219285269
## 573  0.176315789 0.1816806181 0.219285269
## 709  0.176315789 0.1816806181 0.219285269
## 1398 0.176315789 0.1816806181 0.219285269
## 391  0.178070175 0.1827143476 0.228115852
## 405  0.178070175 0.1827143476 0.228115852
## 608  0.178070175 0.1827143476 0.228115852
## 785  0.178070175 0.1827143476 0.228115852
## 1093 0.178070175 0.1827143476 0.228115852
## 230  0.181578947 0.1800071646 0.234091145
## 236  0.181578947 0.1800071646 0.234091145
## 298  0.181578947 0.1800071646 0.234091145
## 374  0.181578947 0.1800071646 0.234091145
## 874  0.181578947 0.1800071646 0.234091145
## 1084 0.181578947 0.1800071646 0.234091145
## 619  0.184210526 0.1786214669 0.240137029
## 954  0.184210526 0.1786214669 0.240137029
## 964  0.184210526 0.1786214669 0.240137029
## 1301 0.184210526 0.1786214669 0.240137029
## 1498 0.184210526 0.1786214669 0.240137029
## 151  0.185087719 0.1785550821 0.243186442
## 344  0.185087719 0.1785550821 0.243186442
## 22   0.189473684 0.1736755111 0.246253504
## 223  0.189473684 0.1736755111 0.246253504
## 599  0.189473684 0.1736755111 0.246253504
## 688  0.189473684 0.1736755111 0.246253504
## 741  0.189473684 0.1736755111 0.246253504
## 1473 0.189473684 0.1736755111 0.246253504
## 153  0.192105263 0.1735502476 0.255560573
## 225  0.192105263 0.1735502476 0.255560573
## 442  0.192105263 0.1735502476 0.255560573
## 657  0.192105263 0.1735502476 0.255560573
## 882  0.192105263 0.1735502476 0.255560573
## 1472 0.192105263 0.1735502476 0.255560573
## 61   0.197368421 0.1677996579 0.258698225
## 130  0.197368421 0.1677996579 0.258698225
## 277  0.197368421 0.1677996579 0.258698225
## 761  0.197368421 0.1677996579 0.258698225
## 791  0.197368421 0.1677996579 0.258698225
## 1023 0.197368421 0.1677996579 0.258698225
## 1322 0.197368421 0.1677996579 0.258698225
## 46   0.199122807 0.1677704189 0.265026472
## 125  0.199122807 0.1677704189 0.265026472
## 1318 0.199122807 0.1677704189 0.265026472
## 1408 0.199122807 0.1677704189 0.265026472
## 90   0.204385965 0.1644736842 0.274651199
## 106  0.204385965 0.1644736842 0.274651199
## 222  0.204385965 0.1644736842 0.274651199
## 690  0.204385965 0.1644736842 0.274651199
## 842  0.204385965 0.1644736842 0.274651199
## 853  0.204385965 0.1644736842 0.274651199
## 981  0.204385965 0.1644736842 0.274651199
## 983  0.204385965 0.1644736842 0.274651199
## 1466 0.204385965 0.1644736842 0.274651199
## 559  0.207017544 0.1623521003 0.277894737
## 1065 0.207017544 0.1623521003 0.277894737
## 1078 0.207017544 0.1623521003 0.277894737
## 1309 0.207017544 0.1623521003 0.277894737
## 255  0.208771930 0.1613159342 0.281155922
## 1264 0.208771930 0.1613159342 0.281155922
## 1461 0.208771930 0.1613159342 0.281155922
## 247  0.212280702 0.1582503992 0.284434756
## 248  0.212280702 0.1582503992 0.284434756
## 728  0.212280702 0.1582503992 0.284434756
## 869  0.212280702 0.1582503992 0.284434756
## 1050 0.212280702 0.1582503992 0.284434756
## 233  0.216666667 0.1532605481 0.284434756
## 400  0.216666667 0.1532605481 0.284434756
## 576  0.216666667 0.1532605481 0.284434756
## 826  0.216666667 0.1532605481 0.284434756
## 1000 0.216666667 0.1532605481 0.284434756
## 103  0.221052632 0.1494519731 0.287731236
## 156  0.221052632 0.1494519731 0.287731236
## 201  0.221052632 0.1494519731 0.287731236
## 332  0.221052632 0.1494519731 0.287731236
## 1097 0.221052632 0.1494519731 0.287731236
## 1174 0.221052632 0.1494519731 0.287731236
## 708  0.225438596 0.1457761023 0.291045365
## 957  0.225438596 0.1457761023 0.291045365
## 1128 0.225438596 0.1457761023 0.291045365
## 1214 0.225438596 0.1457761023 0.291045365
## 1254 0.225438596 0.1457761023 0.291045365
## 1477 0.225438596 0.1457761023 0.291045365
## 200  0.232456140 0.1405434968 0.297726565
## 229  0.232456140 0.1405434968 0.297726565
## 272  0.232456140 0.1405434968 0.297726565
## 314  0.232456140 0.1405434968 0.297726565
## 349  0.232456140 0.1405434968 0.297726565
## 446  0.232456140 0.1405434968 0.297726565
## 612  0.232456140 0.1405434968 0.297726565
## 933  0.232456140 0.1405434968 0.297726565
## 1073 0.232456140 0.1405434968 0.297726565
## 1211 0.232456140 0.1405434968 0.297726565
## 17   0.236842105 0.1371785897 0.301093636
## 795  0.236842105 0.1371785897 0.301093636
## 931  0.236842105 0.1371785897 0.301093636
## 1156 0.236842105 0.1371785897 0.301093636
## 1168 0.236842105 0.1371785897 0.301093636
## 1527 0.236842105 0.1371785897 0.301093636
## 632  0.238596491 0.1383298701 0.311300737
## 951  0.238596491 0.1383298701 0.311300737
## 993  0.238596491 0.1383298701 0.311300737
## 1105 0.238596491 0.1383298701 0.311300737
## 1291 0.238596491 0.1383298701 0.311300737
## 438  0.239473684 0.1412539199 0.325157272
## 565  0.239473684 0.1412539199 0.325157272
## 711  0.239473684 0.1412539199 0.325157272
## 1212 0.239473684 0.1412539199 0.325157272
## 1337 0.239473684 0.1412539199 0.325157272
## 579  0.242105263 0.1396468314 0.328665525
## 732  0.242105263 0.1396468314 0.328665525
## 1336 0.242105263 0.1396468314 0.328665525
## 1428 0.242105263 0.1396468314 0.328665525
## 104  0.245614035 0.1363253457 0.328665525
## 592  0.245614035 0.1363253457 0.328665525
## 792  0.245614035 0.1363253457 0.328665525
## 1389 0.245614035 0.1363253457 0.328665525
## 333  0.249122807 0.1330874628 0.328665525
## 383  0.249122807 0.1330874628 0.328665525
## 798  0.249122807 0.1330874628 0.328665525
## 1411 0.249122807 0.1330874628 0.328665525
## 545  0.252631579 0.1317319393 0.335734974
## 846  0.252631579 0.1317319393 0.335734974
## 896  0.252631579 0.1317319393 0.335734974
## 1220 0.252631579 0.1317319393 0.335734974
## 1293 0.252631579 0.1317319393 0.335734974
## 1494 0.252631579 0.1317319393 0.335734974
## 178  0.254385965 0.1310676168 0.339296169
## 713  0.254385965 0.1310676168 0.339296169
## 1157 0.254385965 0.1310676168 0.339296169
## 168  0.258771930 0.1281234139 0.342875013
## 295  0.258771930 0.1281234139 0.342875013
## 471  0.258771930 0.1281234139 0.342875013
## 647  0.258771930 0.1281234139 0.342875013
## 776  0.258771930 0.1281234139 0.342875013
## 832  0.258771930 0.1281234139 0.342875013
## 7    0.265789474 0.1230846666 0.346471504
## 386  0.265789474 0.1230846666 0.346471504
## 494  0.265789474 0.1230846666 0.346471504
## 598  0.265789474 0.1230846666 0.346471504
## 682  0.265789474 0.1230846666 0.346471504
## 1053 0.265789474 0.1230846666 0.346471504
## 1283 0.265789474 0.1230846666 0.346471504
## 1326 0.265789474 0.1230846666 0.346471504
## 1456 0.265789474 0.1230846666 0.346471504
## 300  0.272807018 0.1191298843 0.353717430
## 370  0.272807018 0.1191298843 0.353717430
## 394  0.272807018 0.1191298843 0.353717430
## 493  0.272807018 0.1191298843 0.353717430
## 919  0.272807018 0.1191298843 0.353717430
## 1102 0.272807018 0.1191298843 0.353717430
## 1178 0.272807018 0.1191298843 0.353717430
## 1247 0.272807018 0.1191298843 0.353717430
## 1394 0.272807018 0.1191298843 0.353717430
## 1422 0.272807018 0.1191298843 0.353717430
## 101  0.276315789 0.1172241565 0.357366864
## 301  0.276315789 0.1172241565 0.357366864
## 548  0.276315789 0.1172241565 0.357366864
## 1083 0.276315789 0.1172241565 0.357366864
## 1467 0.276315789 0.1172241565 0.357366864
## 1040 0.277192982 0.1165475708 0.357366864
## 297  0.278947368 0.1160310444 0.361033946
## 424  0.278947368 0.1160310444 0.361033946
## 1396 0.278947368 0.1160310444 0.361033946
## 91   0.287719298 0.1103363149 0.364718675
## 288  0.287719298 0.1103363149 0.364718675
## 341  0.287719298 0.1103363149 0.364718675
## 413  0.287719298 0.1103363149 0.364718675
## 547  0.287719298 0.1103363149 0.364718675
## 601  0.287719298 0.1103363149 0.364718675
## 677  0.287719298 0.1103363149 0.364718675
## 1076 0.287719298 0.1103363149 0.364718675
## 1125 0.287719298 0.1103363149 0.364718675
## 1169 0.287719298 0.1103363149 0.364718675
## 1493 0.287719298 0.1103363149 0.364718675
## 132  0.291228070 0.1078330989 0.364718675
## 831  0.291228070 0.1078330989 0.364718675
## 1148 0.291228070 0.1078330989 0.364718675
## 1162 0.291228070 0.1078330989 0.364718675
## 1468 0.292105263 0.1072162829 0.364718675
## 193  0.293859649 0.1067795539 0.368421053
## 252  0.293859649 0.1067795539 0.368421053
## 586  0.293859649 0.1067795539 0.368421053
## 214  0.296491228 0.1057442925 0.372141078
## 915  0.296491228 0.1057442925 0.372141078
## 974  0.296491228 0.1057442925 0.372141078
## 1334 0.296491228 0.1057442925 0.372141078
## 6    0.299122807 0.1054996866 0.379634070
## 390  0.299122807 0.1054996866 0.379634070
## 393  0.299122807 0.1054996866 0.379634070
## 736  0.299122807 0.1054996866 0.379634070
## 1215 0.299122807 0.1054996866 0.379634070
## 47   0.301754386 0.1044931841 0.383407038
## 881  0.301754386 0.1044931841 0.383407038
## 959  0.301754386 0.1044931841 0.383407038
## 1057 0.301754386 0.1044931841 0.383407038
## 269  0.306140351 0.1015937703 0.383407038
## 428  0.306140351 0.1015937703 0.383407038
## 621  0.306140351 0.1015937703 0.383407038
## 745  0.306140351 0.1015937703 0.383407038
## 1449 0.306140351 0.1015937703 0.383407038
## 382  0.310526316 0.1002653486 0.391005917
## 451  0.310526316 0.1002653486 0.391005917
## 768  0.310526316 0.1002653486 0.391005917
## 841  0.310526316 0.1002653486 0.391005917
## 1122 0.310526316 0.1002653486 0.391005917
## 1235 0.310526316 0.1002653486 0.391005917
## 1340 0.310526316 0.1002653486 0.391005917
## 37   0.316666667 0.0971502394 0.394831828
## 235  0.316666667 0.0971502394 0.394831828
## 407  0.316666667 0.0971502394 0.394831828
## 425  0.316666667 0.0971502394 0.394831828
## 577  0.316666667 0.0971502394 0.394831828
## 655  0.316666667 0.0971502394 0.394831828
## 928  0.316666667 0.0971502394 0.394831828
## 1350 0.316666667 0.0971502394 0.394831828
## 24   0.318421053 0.0975290603 0.402536593
## 778  0.318421053 0.0975290603 0.402536593
## 876  0.318421053 0.0975290603 0.402536593
## 885  0.318421053 0.0975290603 0.402536593
## 271  0.321929825 0.0975548263 0.414226098
## 512  0.321929825 0.0975548263 0.414226098
## 862  0.321929825 0.0975548263 0.414226098
## 944  0.321929825 0.0975548263 0.414226098
## 949  0.321929825 0.0975548263 0.414226098
## 1219 0.321929825 0.0975548263 0.414226098
## 1253 0.321929825 0.0975548263 0.414226098
## 263  0.324561404 0.0966816884 0.418157895
## 368  0.324561404 0.0966816884 0.418157895
## 1039 0.324561404 0.0966816884 0.418157895
## 1092 0.324561404 0.0966816884 0.418157895
## 4    0.328947368 0.0947877242 0.422107339
## 372  0.328947368 0.0947877242 0.422107339
## 726  0.328947368 0.0947877242 0.422107339
## 757  0.328947368 0.0947877242 0.422107339
## 1062 0.328947368 0.0947877242 0.422107339
## 1185 0.328947368 0.0947877242 0.422107339
## 55   0.332456140 0.0934477058 0.426074432
## 926  0.332456140 0.0934477058 0.426074432
## 1150 0.332456140 0.0934477058 0.426074432
## 1204 0.332456140 0.0934477058 0.426074432
## 1324 0.332456140 0.0934477058 0.426074432
## 154  0.334210526 0.0931348826 0.430059172
## 1172 0.334210526 0.0931348826 0.430059172
## 1316 0.334210526 0.0931348826 0.430059172
## 217  0.335964912 0.0955840045 0.450247586
## 371  0.335964912 0.0955840045 0.450247586
## 618  0.335964912 0.0955840045 0.450247586
## 712  0.335964912 0.0955840045 0.450247586
## 729  0.335964912 0.0955840045 0.450247586
## 1099 0.335964912 0.0955840045 0.450247586
## 1488 0.335964912 0.0955840045 0.450247586
## 38   0.342982456 0.0943211460 0.466715976
## 68   0.342982456 0.0943211460 0.466715976
## 305  0.342982456 0.0943211460 0.466715976
## 585  0.342982456 0.0943211460 0.466715976
## 812  0.342982456 0.0943211460 0.466715976
## 854  0.342982456 0.0943211460 0.466715976
## 880  0.342982456 0.0943211460 0.466715976
## 973  0.342982456 0.0943211460 0.466715976
## 1195 0.342982456 0.0943211460 0.466715976
## 1284 0.342982456 0.0943211460 0.466715976
## 1290 0.342982456 0.0943211460 0.466715976
## 1492 0.342982456 0.0943211460 0.466715976
## 664  0.346491228 0.0923713235 0.466715976
## 1034 0.346491228 0.0923713235 0.466715976
## 1060 0.346491228 0.0923713235 0.466715976
## 1136 0.346491228 0.0923713235 0.466715976
## 49   0.348245614 0.0920765210 0.470877193
## 290  0.348245614 0.0920765210 0.470877193
## 1465 0.348245614 0.0920765210 0.470877193
## 109  0.350000000 0.0911225958 0.470877193
## 265  0.350000000 0.0911225958 0.470877193
## 251  0.352631579 0.0903666519 0.475056057
## 373  0.352631579 0.0903666519 0.475056057
## 628  0.352631579 0.0903666519 0.475056057
## 746  0.352631579 0.0903666519 0.475056057
## 274  0.356140351 0.0904605263 0.487698536
## 342  0.356140351 0.0904605263 0.487698536
## 857  0.356140351 0.0904605263 0.487698536
## 971  0.356140351 0.0904605263 0.487698536
## 996  0.356140351 0.0904605263 0.487698536
## 1049 0.356140351 0.0904605263 0.487698536
## 1123 0.356140351 0.0904605263 0.487698536
## 463  0.358771930 0.0903682586 0.496215094
## 771  0.358771930 0.0903682586 0.496215094
## 1095 0.358771930 0.0903682586 0.496215094
## 1328 0.358771930 0.0903682586 0.496215094
## 1485 0.358771930 0.0903682586 0.496215094
## 378  0.360526316 0.0900932534 0.500499844
## 1255 0.360526316 0.0900932534 0.500499844
## 1365 0.360526316 0.0900932534 0.500499844
## 27   0.367543860 0.0871284855 0.504802242
## 194  0.367543860 0.0871284855 0.504802242
## 595  0.367543860 0.0871284855 0.504802242
## 901  0.367543860 0.0871284855 0.504802242
## 922  0.367543860 0.0871284855 0.504802242
## 966  0.367543860 0.0871284855 0.504802242
## 1001 0.367543860 0.0871284855 0.504802242
## 1179 0.367543860 0.0871284855 0.504802242
## 1504 0.367543860 0.0871284855 0.504802242
## 646  0.371052632 0.0866248793 0.513459981
## 710  0.371052632 0.0866248793 0.513459981
## 740  0.371052632 0.0866248793 0.513459981
## 759  0.371052632 0.0866248793 0.513459981
## 921  0.371052632 0.0866248793 0.513459981
## 1207 0.371052632 0.0866248793 0.513459981
## 74   0.373684211 0.0865633319 0.522188311
## 150  0.373684211 0.0865633319 0.522188311
## 259  0.373684211 0.0865633319 0.522188311
## 884  0.373684211 0.0865633319 0.522188311
## 1296 0.373684211 0.0865633319 0.522188311
## 145  0.378947368 0.0846093696 0.526578947
## 180  0.378947368 0.0846093696 0.526578947
## 935  0.378947368 0.0846093696 0.526578947
## 1171 0.378947368 0.0846093696 0.526578947
## 1188 0.378947368 0.0846093696 0.526578947
## 1495 0.378947368 0.0846093696 0.526578947
## 1528 0.378947368 0.0846093696 0.526578947
## 163  0.383333333 0.0831233005 0.530987231
## 640  0.383333333 0.0831233005 0.530987231
## 722  0.383333333 0.0831233005 0.530987231
## 992  0.383333333 0.0831233005 0.530987231
## 1030 0.383333333 0.0831233005 0.530987231
## 1483 0.383333333 0.0831233005 0.530987231
## 66   0.385964912 0.0830876204 0.539856742
## 953  0.385964912 0.0830876204 0.539856742
## 1071 0.385964912 0.0830876204 0.539856742
## 1191 0.385964912 0.0830876204 0.539856742
## 1520 0.385964912 0.0830876204 0.539856742
## 73   0.391228070 0.0830177012 0.557807537
## 420  0.391228070 0.0830177012 0.557807537
## 540  0.391228070 0.0830177012 0.557807537
## 610  0.391228070 0.0830177012 0.557807537
## 639  0.391228070 0.0830177012 0.557807537
## 692  0.391228070 0.0830177012 0.557807537
## 904  0.391228070 0.0830177012 0.557807537
## 1013 0.391228070 0.0830177012 0.557807537
## 1119 0.391228070 0.0830177012 0.557807537
## 1317 0.391228070 0.0830177012 0.557807537
## 207  0.393859649 0.0847468199 0.580643102
## 474  0.393859649 0.0847468199 0.580643102
## 481  0.393859649 0.0847468199 0.580643102
## 542  0.393859649 0.0847468199 0.580643102
## 629  0.393859649 0.0847468199 0.580643102
## 633  0.393859649 0.0847468199 0.580643102
## 861  0.393859649 0.0847468199 0.580643102
## 1005 0.393859649 0.0847468199 0.580643102
## 240  0.398245614 0.0827336315 0.580643102
## 697  0.398245614 0.0827336315 0.580643102
## 888  0.398245614 0.0827336315 0.580643102
## 1015 0.398245614 0.0827336315 0.580643102
## 1280 0.398245614 0.0827336315 0.580643102
## 279  0.400877193 0.0821245621 0.585263158
## 445  0.400877193 0.0821245621 0.585263158
## 1260 0.400877193 0.0821245621 0.585263158
## 1523 0.400877193 0.0821245621 0.585263158
## 256  0.406140351 0.0809304384 0.594556213
## 437  0.406140351 0.0809304384 0.594556213
## 917  0.406140351 0.0809304384 0.594556213
## 1154 0.406140351 0.0809304384 0.594556213
## 1182 0.406140351 0.0809304384 0.594556213
## 1239 0.406140351 0.0809304384 0.594556213
## 1387 0.406140351 0.0809304384 0.594556213
## 1476 0.406140351 0.0809304384 0.594556213
## 266  0.410526316 0.0795836202 0.599229212
## 509  0.410526316 0.0795836202 0.599229212
## 914  0.410526316 0.0795836202 0.599229212
## 1098 0.410526316 0.0795836202 0.599229212
## 1190 0.410526316 0.0795836202 0.599229212
## 1344 0.410526316 0.0795836202 0.599229212
## 148  0.415789474 0.0784504362 0.608628153
## 152  0.415789474 0.0784504362 0.608628153
## 495  0.415789474 0.0784504362 0.608628153
## 568  0.415789474 0.0784504362 0.608628153
## 1377 0.415789474 0.0784504362 0.608628153
## 1404 0.415789474 0.0784504362 0.608628153
## 1421 0.415789474 0.0784504362 0.608628153
## 1475 0.415789474 0.0784504362 0.608628153
## 83   0.421929825 0.0764351296 0.613354095
## 262  0.421929825 0.0764351296 0.613354095
## 497  0.421929825 0.0764351296 0.613354095
## 635  0.421929825 0.0764351296 0.613354095
## 794  0.421929825 0.0764351296 0.613354095
## 828  0.421929825 0.0764351296 0.613354095
## 893  0.421929825 0.0764351296 0.613354095
## 1210 0.421929825 0.0764351296 0.613354095
## 25   0.430701754 0.0739651327 0.622858922
## 39   0.430701754 0.0739651327 0.622858922
## 575  0.430701754 0.0739651327 0.622858922
## 641  0.430701754 0.0739651327 0.622858922
## 680  0.430701754 0.0739651327 0.622858922
## 731  0.430701754 0.0739651327 0.622858922
## 813  0.430701754 0.0739651327 0.622858922
## 965  0.430701754 0.0739651327 0.622858922
## 1225 0.430701754 0.0739651327 0.622858922
## 1246 0.430701754 0.0739651327 0.622858922
## 1352 0.430701754 0.0739651327 0.622858922
## 1403 0.430701754 0.0739651327 0.622858922
## 175  0.435964912 0.0734837894 0.637248521
## 397  0.435964912 0.0734837894 0.637248521
## 511  0.435964912 0.0734837894 0.637248521
## 620  0.435964912 0.0734837894 0.637248521
## 695  0.435964912 0.0734837894 0.637248521
## 701  0.435964912 0.0734837894 0.637248521
## 1153 0.435964912 0.0734837894 0.637248521
## 1399 0.435964912 0.0734837894 0.637248521
## 1510 0.435964912 0.0734837894 0.637248521
## 93   0.441228070 0.0724919807 0.646929825
## 245  0.441228070 0.0724919807 0.646929825
## 346  0.441228070 0.0724919807 0.646929825
## 366  0.441228070 0.0724919807 0.646929825
## 417  0.441228070 0.0724919807 0.646929825
## 948  0.441228070 0.0724919807 0.646929825
## 1075 0.441228070 0.0724919807 0.646929825
## 1261 0.441228070 0.0724919807 0.646929825
## 40   0.443859649 0.0714865008 0.646929825
## 1044 0.443859649 0.0714865008 0.646929825
## 1249 0.443859649 0.0714865008 0.646929825
## 243  0.450000000 0.0691889144 0.646929825
## 532  0.450000000 0.0691889144 0.646929825
## 671  0.450000000 0.0691889144 0.646929825
## 672  0.450000000 0.0691889144 0.646929825
## 837  0.450000000 0.0691889144 0.646929825
## 1277 0.450000000 0.0691889144 0.646929825
## 1499 0.450000000 0.0691889144 0.646929825
## 328  0.452631579 0.0692393780 0.656681719
## 347  0.452631579 0.0692393780 0.656681719
## 611  0.452631579 0.0692393780 0.656681719
## 1158 0.452631579 0.0692393780 0.656681719
## 1446 0.452631579 0.0692393780 0.656681719
## 2    0.458771930 0.0675197835 0.661584138
## 87   0.458771930 0.0675197835 0.661584138
## 232  0.458771930 0.0675197835 0.661584138
## 246  0.458771930 0.0675197835 0.661584138
## 261  0.458771930 0.0675197835 0.661584138
## 691  0.458771930 0.0675197835 0.661584138
## 1080 0.458771930 0.0675197835 0.661584138
## 1222 0.458771930 0.0675197835 0.661584138
## 286  0.464035088 0.0661546312 0.666504204
## 381  0.464035088 0.0661546312 0.666504204
## 997  0.464035088 0.0661546312 0.666504204
## 1061 0.464035088 0.0661546312 0.666504204
## 1139 0.464035088 0.0661546312 0.666504204
## 1142 0.464035088 0.0661546312 0.666504204
## 1440 0.464035088 0.0661546312 0.666504204
## 56   0.471052632 0.0642227388 0.671441918
## 208  0.471052632 0.0642227388 0.671441918
## 406  0.471052632 0.0642227388 0.671441918
## 593  0.471052632 0.0642227388 0.671441918
## 829  0.471052632 0.0642227388 0.671441918
## 875  0.471052632 0.0642227388 0.671441918
## 969  0.471052632 0.0642227388 0.671441918
## 1208 0.471052632 0.0642227388 0.671441918
## 1359 0.471052632 0.0642227388 0.671441918
## 693  0.475438596 0.0646689086 0.691369252
## 699  0.475438596 0.0646689086 0.691369252
## 850  0.475438596 0.0646689086 0.691369252
## 1118 0.475438596 0.0646689086 0.691369252
## 1135 0.475438596 0.0646689086 0.691369252
## 1263 0.475438596 0.0646689086 0.691369252
## 1272 0.475438596 0.0646689086 0.691369252
## 1320 0.475438596 0.0646689086 0.691369252
## 1373 0.475438596 0.0646689086 0.691369252
## 237  0.477192982 0.0645574553 0.696395204
## 615  0.477192982 0.0645574553 0.696395204
## 1355 0.477192982 0.0645574553 0.696395204
## 694  0.479824561 0.0636770701 0.696395204
## 1038 0.479824561 0.0636770701 0.696395204
## 1313 0.479824561 0.0636770701 0.696395204
## 485  0.485964912 0.0621325059 0.701438804
## 507  0.485964912 0.0621325059 0.701438804
## 679  0.485964912 0.0621325059 0.701438804
## 988  0.485964912 0.0621325059 0.701438804
## 1066 0.485964912 0.0621325059 0.701438804
## 1279 0.485964912 0.0621325059 0.701438804
## 1346 0.485964912 0.0621325059 0.701438804
## 1354 0.485964912 0.0621325059 0.701438804
## 183  0.492105263 0.0601665235 0.701438804
## 260  0.492105263 0.0601665235 0.701438804
## 558  0.492105263 0.0601665235 0.701438804
## 1054 0.492105263 0.0601665235 0.701438804
## 1427 0.492105263 0.0601665235 0.701438804
## 1481 0.492105263 0.0601665235 0.701438804
## 1525 0.492105263 0.0601665235 0.701438804
## 444  0.499122807 0.0579847347 0.701438804
## 748  0.499122807 0.0579847347 0.701438804
## 793  0.499122807 0.0579847347 0.701438804
## 803  0.499122807 0.0579847347 0.701438804
## 821  0.499122807 0.0579847347 0.701438804
## 1035 0.499122807 0.0579847347 0.701438804
## 1229 0.499122807 0.0579847347 0.701438804
## 1390 0.499122807 0.0579847347 0.701438804
## 320  0.502631579 0.0573700418 0.706500052
## 376  0.502631579 0.0573700418 0.706500052
## 422  0.502631579 0.0573700418 0.706500052
## 503  0.502631579 0.0573700418 0.706500052
## 1165 0.502631579 0.0573700418 0.706500052
## 5    0.509649123 0.0552800392 0.706500052
## 65   0.509649123 0.0552800392 0.706500052
## 316  0.509649123 0.0552800392 0.706500052
## 414  0.509649123 0.0552800392 0.706500052
## 505  0.509649123 0.0552800392 0.706500052
## 980  0.509649123 0.0552800392 0.706500052
## 1014 0.509649123 0.0552800392 0.706500052
## 1170 0.509649123 0.0552800392 0.706500052
## 29   0.514912281 0.0537542388 0.706500052
## 317  0.514912281 0.0537542388 0.706500052
## 419  0.514912281 0.0537542388 0.706500052
## 905  0.514912281 0.0537542388 0.706500052
## 1016 0.514912281 0.0537542388 0.706500052
## 1392 0.514912281 0.0537542388 0.706500052
## 469  0.516666667 0.0536895648 0.711578947
## 590  0.516666667 0.0536895648 0.711578947
## 1068 0.516666667 0.0536895648 0.711578947
## 287  0.521052632 0.0528813478 0.716675491
## 388  0.521052632 0.0528813478 0.716675491
## 597  0.521052632 0.0528813478 0.716675491
## 702  0.521052632 0.0528813478 0.716675491
## 1114 0.521052632 0.0528813478 0.716675491
## 1366 0.521052632 0.0528813478 0.716675491
## 131  0.526315789 0.0522724521 0.726921520
## 458  0.526315789 0.0522724521 0.726921520
## 574  0.526315789 0.0522724521 0.726921520
## 1018 0.526315789 0.0522724521 0.726921520
## 1028 0.526315789 0.0522724521 0.726921520
## 1245 0.526315789 0.0522724521 0.726921520
## 1391 0.526315789 0.0522724521 0.726921520
## 1453 0.526315789 0.0522724521 0.726921520
## 177  0.529824561 0.0517322296 0.732071006
## 510  0.529824561 0.0517322296 0.732071006
## 836  0.529824561 0.0517322296 0.732071006
## 867  0.529824561 0.0517322296 0.732071006
## 1512 0.529824561 0.0517322296 0.732071006
## 241  0.533333333 0.0511996338 0.737238140
## 755  0.533333333 0.0511996338 0.737238140
## 758  0.533333333 0.0511996338 0.737238140
## 1164 0.533333333 0.0511996338 0.737238140
## 1176 0.533333333 0.0511996338 0.737238140
## 45   0.537719298 0.0504401697 0.742422921
## 51   0.537719298 0.0504401697 0.742422921
## 359  0.537719298 0.0504401697 0.742422921
## 1233 0.537719298 0.0504401697 0.742422921
## 1265 0.537719298 0.0504401697 0.742422921
## 1530 0.537719298 0.0504401697 0.742422921
## 496  0.543859649 0.0488238295 0.742422921
## 528  0.543859649 0.0488238295 0.742422921
## 670  0.543859649 0.0488238295 0.742422921
## 673  0.543859649 0.0488238295 0.742422921
## 804  0.543859649 0.0488238295 0.742422921
## 1180 0.543859649 0.0488238295 0.742422921
## 1524 0.543859649 0.0488238295 0.742422921
## 15   0.550877193 0.0470269562 0.742422921
## 162  0.550877193 0.0470269562 0.742422921
## 231  0.550877193 0.0470269562 0.742422921
## 429  0.550877193 0.0470269562 0.742422921
## 667  0.550877193 0.0470269562 0.742422921
## 762  0.550877193 0.0470269562 0.742422921
## 911  0.550877193 0.0470269562 0.742422921
## 978  0.550877193 0.0470269562 0.742422921
## 408  0.555263158 0.0471316502 0.758083152
## 412  0.555263158 0.0471316502 0.758083152
## 653  0.555263158 0.0471316502 0.758083152
## 718  0.555263158 0.0471316502 0.758083152
## 848  0.555263158 0.0471316502 0.758083152
## 1193 0.555263158 0.0471316502 0.758083152
## 1194 0.555263158 0.0471316502 0.758083152
## 1202 0.555263158 0.0471316502 0.758083152
## 54   0.560526316 0.0462233641 0.763338524
## 146  0.560526316 0.0462233641 0.763338524
## 627  0.560526316 0.0462233641 0.763338524
## 763  0.560526316 0.0462233641 0.763338524
## 805  0.560526316 0.0462233641 0.763338524
## 1041 0.560526316 0.0462233641 0.763338524
## 1361 0.560526316 0.0462233641 0.763338524
## 35   0.566666667 0.0455133788 0.773902211
## 80   0.566666667 0.0455133788 0.773902211
## 283  0.566666667 0.0455133788 0.773902211
## 289  0.566666667 0.0455133788 0.773902211
## 934  0.566666667 0.0455133788 0.773902211
## 1063 0.566666667 0.0455133788 0.773902211
## 1160 0.566666667 0.0455133788 0.773902211
## 1234 0.566666667 0.0455133788 0.773902211
## 1358 0.566666667 0.0455133788 0.773902211
## 188  0.570175439 0.0446710526 0.773902211
## 823  0.570175439 0.0446710526 0.773902211
## 920  0.570175439 0.0446710526 0.773902211
## 1349 0.570175439 0.0446710526 0.773902211
## 179  0.575438596 0.0438136722 0.779210526
## 343  0.575438596 0.0438136722 0.779210526
## 506  0.575438596 0.0438136722 0.779210526
## 515  0.575438596 0.0438136722 0.779210526
## 1275 0.575438596 0.0438136722 0.779210526
## 1339 0.575438596 0.0438136722 0.779210526
## 1430 0.575438596 0.0438136722 0.779210526
## 92   0.580701754 0.0433534320 0.789880100
## 228  0.580701754 0.0433534320 0.789880100
## 310  0.580701754 0.0433534320 0.789880100
## 807  0.580701754 0.0433534320 0.789880100
## 986  0.580701754 0.0433534320 0.789880100
## 1286 0.580701754 0.0433534320 0.789880100
## 1298 0.580701754 0.0433534320 0.789880100
## 1330 0.580701754 0.0433534320 0.789880100
## 202  0.587719298 0.0421290147 0.795241358
## 364  0.587719298 0.0421290147 0.795241358
## 546  0.587719298 0.0421290147 0.795241358
## 972  0.587719298 0.0421290147 0.795241358
## 982  0.587719298 0.0421290147 0.795241358
## 1012 0.587719298 0.0421290147 0.795241358
## 1056 0.587719298 0.0421290147 0.795241358
## 1242 0.587719298 0.0421290147 0.795241358
## 1303 0.587719298 0.0421290147 0.795241358
## 186  0.592105263 0.0411487158 0.795241358
## 189  0.592105263 0.0411487158 0.795241358
## 477  0.592105263 0.0411487158 0.795241358
## 508  0.592105263 0.0411487158 0.795241358
## 1141 0.592105263 0.0411487158 0.795241358
## 176  0.598245614 0.0405362868 0.806016817
## 285  0.598245614 0.0405362868 0.806016817
## 623  0.598245614 0.0405362868 0.806016817
## 723  0.598245614 0.0405362868 0.806016817
## 923  0.598245614 0.0405362868 0.806016817
## 1200 0.598245614 0.0405362868 0.806016817
## 1266 0.598245614 0.0405362868 0.806016817
## 1374 0.598245614 0.0405362868 0.806016817
## 1412 0.598245614 0.0405362868 0.806016817
## 182  0.600000000 0.0412511295 0.822312364
## 571  0.600000000 0.0412511295 0.822312364
## 689  0.600000000 0.0412511295 0.822312364
## 1002 0.600000000 0.0412511295 0.822312364
## 1048 0.600000000 0.0412511295 0.822312364
## 435  0.604385965 0.0410244898 0.833264300
## 484  0.604385965 0.0410244898 0.833264300
## 537  0.604385965 0.0410244898 0.833264300
## 665  0.604385965 0.0410244898 0.833264300
## 734  0.604385965 0.0410244898 0.833264300
## 956  0.604385965 0.0410244898 0.833264300
## 1149 0.604385965 0.0410244898 0.833264300
## 313  0.612280702 0.0396958086 0.838766739
## 325  0.612280702 0.0396958086 0.838766739
## 402  0.612280702 0.0396958086 0.838766739
## 589  0.612280702 0.0396958086 0.838766739
## 685  0.612280702 0.0396958086 0.838766739
## 811  0.612280702 0.0396958086 0.838766739
## 984  0.612280702 0.0396958086 0.838766739
## 1046 0.612280702 0.0396958086 0.838766739
## 1203 0.612280702 0.0396958086 0.838766739
## 1257 0.612280702 0.0396958086 0.838766739
## 385  0.614912281 0.0391432723 0.838766739
## 730  0.614912281 0.0391432723 0.838766739
## 767  0.614912281 0.0391432723 0.838766739
## 254  0.617543860 0.0393025867 0.849824561
## 499  0.617543860 0.0393025867 0.849824561
## 552  0.617543860 0.0393025867 0.849824561
## 864  0.617543860 0.0393025867 0.849824561
## 977  0.617543860 0.0393025867 0.849824561
## 28   0.621052632 0.0385763885 0.849824561
## 33   0.621052632 0.0385763885 0.849824561
## 357  0.621052632 0.0385763885 0.849824561
## 1351 0.621052632 0.0385763885 0.849824561
## 516  0.624561404 0.0378598824 0.849824561
## 523  0.624561404 0.0378598824 0.849824561
## 797  0.624561404 0.0378598824 0.849824561
## 940  0.624561404 0.0378598824 0.849824561
## 234  0.632456140 0.0366245675 0.855379944
## 319  0.632456140 0.0366245675 0.855379944
## 431  0.632456140 0.0366245675 0.855379944
## 527  0.632456140 0.0366245675 0.855379944
## 600  0.632456140 0.0366245675 0.855379944
## 648  0.632456140 0.0366245675 0.855379944
## 824  0.632456140 0.0366245675 0.855379944
## 1069 0.632456140 0.0366245675 0.855379944
## 1115 0.632456140 0.0366245675 0.855379944
## 1335 0.632456140 0.0366245675 0.855379944
## 11   0.641228070 0.0352557653 0.860952974
## 67   0.641228070 0.0352557653 0.860952974
## 268  0.641228070 0.0352557653 0.860952974
## 303  0.641228070 0.0352557653 0.860952974
## 396  0.641228070 0.0352557653 0.860952974
## 488  0.641228070 0.0352557653 0.860952974
## 943  0.641228070 0.0352557653 0.860952974
## 991  0.641228070 0.0352557653 0.860952974
## 1311 0.641228070 0.0352557653 0.860952974
## 1348 0.641228070 0.0352557653 0.860952974
## 1416 0.641228070 0.0352557653 0.860952974
## 30   0.649122807 0.0340936690 0.866543652
## 472  0.649122807 0.0340936690 0.866543652
## 659  0.649122807 0.0340936690 0.866543652
## 802  0.649122807 0.0340936690 0.866543652
## 860  0.649122807 0.0340936690 0.866543652
## 963  0.649122807 0.0340936690 0.866543652
## 1166 0.649122807 0.0340936690 0.866543652
## 1288 0.649122807 0.0340936690 0.866543652
## 1305 0.649122807 0.0340936690 0.866543652
## 1459 0.649122807 0.0340936690 0.866543652
## 107  0.653508772 0.0336078971 0.872151978
## 257  0.653508772 0.0336078971 0.872151978
## 536  0.653508772 0.0336078971 0.872151978
## 652  0.653508772 0.0336078971 0.872151978
## 662  0.653508772 0.0336078971 0.872151978
## 995  0.653508772 0.0336078971 0.872151978
## 53   0.657017544 0.0332897082 0.877777951
## 276  0.657017544 0.0332897082 0.877777951
## 398  0.657017544 0.0332897082 0.877777951
## 1307 0.657017544 0.0332897082 0.877777951
## 1332 0.657017544 0.0332897082 0.877777951
## 21   0.665789474 0.0323501614 0.889082840
## 86   0.665789474 0.0323501614 0.889082840
## 128  0.665789474 0.0323501614 0.889082840
## 160  0.665789474 0.0323501614 0.889082840
## 204  0.665789474 0.0323501614 0.889082840
## 696  0.665789474 0.0323501614 0.889082840
## 766  0.665789474 0.0323501614 0.889082840
## 1077 0.665789474 0.0323501614 0.889082840
## 1144 0.665789474 0.0323501614 0.889082840
## 1424 0.665789474 0.0323501614 0.889082840
## 1435 0.665789474 0.0323501614 0.889082840
## 1454 0.665789474 0.0323501614 0.889082840
## 544  0.671929825 0.0312658129 0.889082840
## 554  0.671929825 0.0312658129 0.889082840
## 580  0.671929825 0.0312658129 0.889082840
## 605  0.671929825 0.0312658129 0.889082840
## 838  0.671929825 0.0312658129 0.889082840
## 1187 0.671929825 0.0312658129 0.889082840
## 1271 0.671929825 0.0312658129 0.889082840
## 1    0.678947368 0.0303676463 0.894761756
## 120  0.678947368 0.0303676463 0.894761756
## 174  0.678947368 0.0303676463 0.894761756
## 199  0.678947368 0.0303676463 0.894761756
## 624  0.678947368 0.0303676463 0.894761756
## 1209 0.678947368 0.0303676463 0.894761756
## 1393 0.678947368 0.0303676463 0.894761756
## 1480 0.678947368 0.0303676463 0.894761756
## 1482 0.678947368 0.0303676463 0.894761756
## 345  0.684210526 0.0297853367 0.900458320
## 352  0.684210526 0.0297853367 0.900458320
## 483  0.684210526 0.0297853367 0.900458320
## 849  0.684210526 0.0297853367 0.900458320
## 890  0.684210526 0.0297853367 0.900458320
## 1384 0.684210526 0.0297853367 0.900458320
## 1419 0.684210526 0.0297853367 0.900458320
## 70   0.687719298 0.0291984483 0.900458320
## 535  0.687719298 0.0291984483 0.900458320
## 847  0.687719298 0.0291984483 0.900458320
## 1217 0.687719298 0.0291984483 0.900458320
## 312  0.691228070 0.0286189269 0.900458320
## 447  0.691228070 0.0286189269 0.900458320
## 1087 0.691228070 0.0286189269 0.900458320
## 1308 0.691228070 0.0286189269 0.900458320
## 44   0.700000000 0.0272016371 0.900458320
## 89   0.700000000 0.0272016371 0.900458320
## 273  0.700000000 0.0272016371 0.900458320
## 452  0.700000000 0.0272016371 0.900458320
## 517  0.700000000 0.0272016371 0.900458320
## 555  0.700000000 0.0272016371 0.900458320
## 584  0.700000000 0.0272016371 0.900458320
## 773  0.700000000 0.0272016371 0.900458320
## 1130 0.700000000 0.0272016371 0.900458320
## 1285 0.700000000 0.0272016371 0.900458320
## 133  0.703508772 0.0269434976 0.906172532
## 192  0.703508772 0.0269434976 0.906172532
## 739  0.703508772 0.0269434976 0.906172532
## 924  0.703508772 0.0269434976 0.906172532
## 1479 0.703508772 0.0269434976 0.906172532
## 164  0.707894737 0.0265512544 0.911904391
## 165  0.707894737 0.0265512544 0.911904391
## 244  0.707894737 0.0265512544 0.911904391
## 898  0.707894737 0.0265512544 0.911904391
## 1011 0.707894737 0.0265512544 0.911904391
## 1151 0.707894737 0.0265512544 0.911904391
## 88   0.713157895 0.0257383444 0.911904391
## 339  0.713157895 0.0257383444 0.911904391
## 765  0.713157895 0.0257383444 0.911904391
## 912  0.713157895 0.0257383444 0.911904391
## 1192 0.713157895 0.0257383444 0.911904391
## 1379 0.713157895 0.0257383444 0.911904391
## 171  0.718421053 0.0249403923 0.911904391
## 184  0.718421053 0.0249403923 0.911904391
## 227  0.718421053 0.0249403923 0.911904391
## 561  0.718421053 0.0249403923 0.911904391
## 1074 0.718421053 0.0249403923 0.911904391
## 1163 0.718421053 0.0249403923 0.911904391
## 10   0.723684211 0.0241570724 0.911904391
## 375  0.723684211 0.0241570724 0.911904391
## 384  0.723684211 0.0241570724 0.911904391
## 436  0.723684211 0.0241570724 0.911904391
## 843  0.723684211 0.0241570724 0.911904391
## 1126 0.723684211 0.0241570724 0.911904391
## 137  0.728070175 0.0240799438 0.923421053
## 315  0.728070175 0.0240799438 0.923421053
## 467  0.728070175 0.0240799438 0.923421053
## 868  0.728070175 0.0240799438 0.923421053
## 886  0.728070175 0.0240799438 0.923421053
## 1256 0.728070175 0.0240799438 0.923421053
## 1406 0.728070175 0.0240799438 0.923421053
## 582  0.731578947 0.0235693504 0.923421053
## 1111 0.731578947 0.0235693504 0.923421053
## 1331 0.731578947 0.0235693504 0.923421053
## 1451 0.731578947 0.0235693504 0.923421053
## 212  0.735964912 0.0229398041 0.923421053
## 250  0.735964912 0.0229398041 0.923421053
## 258  0.735964912 0.0229398041 0.923421053
## 489  0.735964912 0.0229398041 0.923421053
## 1397 0.735964912 0.0229398041 0.923421053
## 449  0.739473684 0.0224430155 0.923421053
## 524  0.739473684 0.0224430155 0.923421053
## 968  0.739473684 0.0224430155 0.923421053
## 1183 0.739473684 0.0224430155 0.923421053
## 98   0.742105263 0.0220743618 0.923421053
## 337  0.742105263 0.0220743618 0.923421053
## 817  0.742105263 0.0220743618 0.923421053
## 302  0.745614035 0.0215880056 0.923421053
## 416  0.745614035 0.0215880056 0.923421053
## 654  0.745614035 0.0215880056 0.923421053
## 1429 0.745614035 0.0215880056 0.923421053
## 105  0.749122807 0.0213781807 0.929205855
## 253  0.749122807 0.0213781807 0.929205855
## 1108 0.749122807 0.0213781807 0.929205855
## 1127 0.749122807 0.0213781807 0.929205855
## 1442 0.749122807 0.0213781807 0.929205855
## 284  0.756140351 0.0204304042 0.929205855
## 336  0.756140351 0.0204304042 0.929205855
## 387  0.756140351 0.0204304042 0.929205855
## 432  0.756140351 0.0204304042 0.929205855
## 676  0.756140351 0.0204304042 0.929205855
## 800  0.756140351 0.0204304042 0.929205855
## 870  0.756140351 0.0204304042 0.929205855
## 1159 0.756140351 0.0204304042 0.929205855
## 170  0.759649123 0.0202301661 0.935008305
## 216  0.759649123 0.0202301661 0.935008305
## 238  0.759649123 0.0202301661 0.935008305
## 1140 0.759649123 0.0202301661 0.935008305
## 1371 0.759649123 0.0202301661 0.935008305
## 141  0.765789474 0.0199504120 0.946666148
## 211  0.765789474 0.0199504120 0.946666148
## 377  0.765789474 0.0199504120 0.946666148
## 448  0.765789474 0.0199504120 0.946666148
## 819  0.765789474 0.0199504120 0.946666148
## 1022 0.765789474 0.0199504120 0.946666148
## 1145 0.765789474 0.0199504120 0.946666148
## 1167 0.765789474 0.0199504120 0.946666148
## 1417 0.765789474 0.0199504120 0.946666148
## 48   0.771052632 0.0192682599 0.946666148
## 457  0.771052632 0.0192682599 0.946666148
## 873  0.771052632 0.0192682599 0.946666148
## 975  0.771052632 0.0192682599 0.946666148
## 1378 0.771052632 0.0192682599 0.946666148
## 1431 0.771052632 0.0192682599 0.946666148
## 41   0.775438596 0.0189668034 0.952521541
## 433  0.775438596 0.0189668034 0.952521541
## 666  0.775438596 0.0189668034 0.952521541
## 684  0.775438596 0.0189668034 0.952521541
## 1113 0.775438596 0.0189668034 0.952521541
## 1269 0.775438596 0.0189668034 0.952521541
## 242  0.780701754 0.0183036746 0.952521541
## 453  0.780701754 0.0183036746 0.952521541
## 770  0.780701754 0.0183036746 0.952521541
## 1029 0.780701754 0.0183036746 0.952521541
## 1400 0.780701754 0.0183036746 0.952521541
## 1500 0.780701754 0.0183036746 0.952521541
## 115  0.785964912 0.0176521336 0.952521541
## 139  0.785964912 0.0176521336 0.952521541
## 351  0.785964912 0.0176521336 0.952521541
## 749  0.785964912 0.0176521336 0.952521541
## 1175 0.785964912 0.0176521336 0.952521541
## 1405 0.785964912 0.0176521336 0.952521541
## 169  0.791228070 0.0172618893 0.958394581
## 513  0.791228070 0.0172618893 0.958394581
## 603  0.791228070 0.0172618893 0.958394581
## 678  0.791228070 0.0172618893 0.958394581
## 777  0.791228070 0.0172618893 0.958394581
## 1238 0.791228070 0.0172618893 0.958394581
## 1369 0.791228070 0.0172618893 0.958394581
## 142  0.792105263 0.0171558263 0.958394581
## 827  0.795614035 0.0169827592 0.964285269
## 1133 0.795614035 0.0169827592 0.964285269
## 1201 0.795614035 0.0169827592 0.964285269
## 1258 0.795614035 0.0169827592 0.964285269
## 1434 0.795614035 0.0169827592 0.964285269
## 825  0.800000000 0.0164609053 0.964285269
## 1281 0.800000000 0.0164609053 0.964285269
## 1287 0.800000000 0.0164609053 0.964285269
## 1496 0.800000000 0.0164609053 0.964285269
## 1497 0.800000000 0.0164609053 0.964285269
## 42   0.803508772 0.0160488321 0.964285269
## 113  0.803508772 0.0160488321 0.964285269
## 118  0.803508772 0.0160488321 0.964285269
## 999  0.803508772 0.0160488321 0.964285269
## 350  0.809649123 0.0153390679 0.964285269
## 750  0.809649123 0.0153390679 0.964285269
## 840  0.809649123 0.0153390679 0.964285269
## 938  0.809649123 0.0153390679 0.964285269
## 1089 0.809649123 0.0153390679 0.964285269
## 1304 0.809649123 0.0153390679 0.964285269
## 1314 0.809649123 0.0153390679 0.964285269
## 116  0.814035088 0.0148407903 0.964285269
## 267  0.814035088 0.0148407903 0.964285269
## 625  0.814035088 0.0148407903 0.964285269
## 775  0.814035088 0.0148407903 0.964285269
## 903  0.814035088 0.0148407903 0.964285269
## 69   0.822807018 0.0138654477 0.964285269
## 187  0.822807018 0.0138654477 0.964285269
## 338  0.822807018 0.0138654477 0.964285269
## 560  0.822807018 0.0138654477 0.964285269
## 658  0.822807018 0.0138654477 0.964285269
## 810  0.822807018 0.0138654477 0.964285269
## 835  0.822807018 0.0138654477 0.964285269
## 866  0.822807018 0.0138654477 0.964285269
## 872  0.822807018 0.0138654477 0.964285269
## 1252 0.822807018 0.0138654477 0.964285269
## 167  0.826315789 0.0134830637 0.964285269
## 833  0.826315789 0.0134830637 0.964285269
## 910  0.826315789 0.0134830637 0.964285269
## 970  0.826315789 0.0134830637 0.964285269
## 8    0.832456140 0.0132856697 0.976119589
## 501  0.832456140 0.0132856697 0.976119589
## 724  0.832456140 0.0132856697 0.976119589
## 1086 0.832456140 0.0132856697 0.976119589
## 1181 0.832456140 0.0132856697 0.976119589
## 1199 0.832456140 0.0132856697 0.976119589
## 1363 0.832456140 0.0132856697 0.976119589
## 1364 0.832456140 0.0132856697 0.976119589
## 1457 0.832456140 0.0132856697 0.976119589
## 64   0.842982456 0.0121766487 0.976119589
## 84   0.842982456 0.0121766487 0.976119589
## 270  0.842982456 0.0121766487 0.976119589
## 353  0.842982456 0.0121766487 0.976119589
## 578  0.842982456 0.0121766487 0.976119589
## 581  0.842982456 0.0121766487 0.976119589
## 704  0.842982456 0.0121766487 0.976119589
## 902  0.842982456 0.0121766487 0.976119589
## 1064 0.842982456 0.0121766487 0.976119589
## 1251 0.842982456 0.0121766487 0.976119589
## 1462 0.842982456 0.0121766487 0.976119589
## 1471 0.842982456 0.0121766487 0.976119589
## 16   0.851754386 0.0112807331 0.976119589
## 71   0.851754386 0.0112807331 0.976119589
## 119  0.851754386 0.0112807331 0.976119589
## 280  0.851754386 0.0112807331 0.976119589
## 450  0.851754386 0.0112807331 0.976119589
## 649  0.851754386 0.0112807331 0.976119589
## 650  0.851754386 0.0112807331 0.976119589
## 735  0.851754386 0.0112807331 0.976119589
## 1059 0.851754386 0.0112807331 0.976119589
## 1112 0.851754386 0.0112807331 0.976119589
## 173  0.855263158 0.0113714778 0.988024499
## 550  0.855263158 0.0113714778 0.988024499
## 616  0.855263158 0.0113714778 0.988024499
## 1067 0.855263158 0.0113714778 0.988024499
## 1300 0.855263158 0.0113714778 0.988024499
## 1418 0.855263158 0.0113714778 0.988024499
## 135  0.862280702 0.0106742108 0.988024499
## 443  0.862280702 0.0106742108 0.988024499
## 553  0.862280702 0.0106742108 0.988024499
## 583  0.862280702 0.0106742108 0.988024499
## 891  0.862280702 0.0106742108 0.988024499
## 1090 0.862280702 0.0106742108 0.988024499
## 1216 0.862280702 0.0106742108 0.988024499
## 1276 0.862280702 0.0106742108 0.988024499
## 327  0.870175439 0.0099081352 0.988024499
## 355  0.870175439 0.0099081352 0.988024499
## 455  0.870175439 0.0099081352 0.988024499
## 456  0.870175439 0.0099081352 0.988024499
## 751  0.870175439 0.0099081352 0.988024499
## 1205 0.870175439 0.0099081352 0.988024499
## 1345 0.870175439 0.0099081352 0.988024499
## 1458 0.870175439 0.0099081352 0.988024499
## 1460 0.870175439 0.0099081352 0.988024499
## 522  0.877192982 0.0092430580 0.988024499
## 526  0.877192982 0.0092430580 0.988024499
## 743  0.877192982 0.0092430580 0.988024499
## 774  0.877192982 0.0092430580 0.988024499
## 916  0.877192982 0.0092430580 0.988024499
## 962  0.877192982 0.0092430580 0.988024499
## 1213 0.877192982 0.0092430580 0.988024499
## 1273 0.877192982 0.0092430580 0.988024499
## 190  0.881578947 0.0088347974 0.988024499
## 239  0.881578947 0.0088347974 0.988024499
## 1131 0.881578947 0.0088347974 0.988024499
## 1218 0.881578947 0.0088347974 0.988024499
## 1383 0.881578947 0.0088347974 0.988024499
## 75   0.889473684 0.0081139650 0.988024499
## 99   0.889473684 0.0081139650 0.988024499
## 531  0.889473684 0.0081139650 0.988024499
## 913  0.889473684 0.0081139650 0.988024499
## 1147 0.889473684 0.0081139650 0.988024499
## 1161 0.889473684 0.0081139650 0.988024499
## 1402 0.889473684 0.0081139650 0.988024499
## 1426 0.889473684 0.0081139650 0.988024499
## 1463 0.889473684 0.0081139650 0.988024499
## 143  0.892982456 0.0077992786 0.988024499
## 985  0.892982456 0.0077992786 0.988024499
## 1146 0.892982456 0.0077992786 0.988024499
## 1478 0.892982456 0.0077992786 0.988024499
## 155  0.898245614 0.0073336766 0.988024499
## 626  0.898245614 0.0073336766 0.988024499
## 721  0.898245614 0.0073336766 0.988024499
## 918  0.898245614 0.0073336766 0.988024499
## 1231 0.898245614 0.0073336766 0.988024499
## 1329 0.898245614 0.0073336766 0.988024499
## 34   0.906140351 0.0066494500 0.988024499
## 76   0.906140351 0.0066494500 0.988024499
## 144  0.906140351 0.0066494500 0.988024499
## 415  0.906140351 0.0066494500 0.988024499
## 473  0.906140351 0.0066494500 0.988024499
## 519  0.906140351 0.0066494500 0.988024499
## 604  0.906140351 0.0066494500 0.988024499
## 1184 0.906140351 0.0066494500 0.988024499
## 1423 0.906140351 0.0066494500 0.988024499
## 181  0.913157895 0.0060551906 0.988024499
## 329  0.913157895 0.0060551906 0.988024499
## 834  0.913157895 0.0060551906 0.988024499
## 941  0.913157895 0.0060551906 0.988024499
## 998  0.913157895 0.0060551906 0.988024499
## 1003 0.913157895 0.0060551906 0.988024499
## 1132 0.913157895 0.0060551906 0.988024499
## 1382 0.913157895 0.0060551906 0.988024499
## 26   0.919298246 0.0055457115 0.988024499
## 418  0.919298246 0.0055457115 0.988024499
## 820  0.919298246 0.0055457115 0.988024499
## 844  0.919298246 0.0055457115 0.988024499
## 845  0.919298246 0.0055457115 0.988024499
## 1088 0.919298246 0.0055457115 0.988024499
## 1357 0.919298246 0.0055457115 0.988024499
## 96   0.922807018 0.0052588938 0.988024499
## 379  0.922807018 0.0052588938 0.988024499
## 478  0.922807018 0.0052588938 0.988024499
## 686  0.922807018 0.0052588938 0.988024499
## 12   0.927192982 0.0049047104 0.988024499
## 59   0.927192982 0.0049047104 0.988024499
## 138  0.927192982 0.0049047104 0.988024499
## 172  0.927192982 0.0049047104 0.988024499
## 1353 0.927192982 0.0049047104 0.988024499
## 637  0.929824561 0.0048853643 0.994003426
## 801  0.929824561 0.0048853643 0.994003426
## 1134 0.929824561 0.0048853643 0.994003426
## 1386 0.929824561 0.0048853643 0.994003426
## 140  0.935087719 0.0044679879 0.994003426
## 430  0.935087719 0.0044679879 0.994003426
## 703  0.935087719 0.0044679879 0.994003426
## 764  0.935087719 0.0044679879 0.994003426
## 909  0.935087719 0.0044679879 0.994003426
## 1323 0.935087719 0.0044679879 0.994003426
## 772  0.937719298 0.0044501242 1.000000000
## 1109 0.937719298 0.0044501242 1.000000000
## 1268 0.937719298 0.0044501242 1.000000000
## 1503 0.937719298 0.0044501242 1.000000000
## 492  0.940350877 0.0042446172 1.000000000
## 562  0.940350877 0.0042446172 1.000000000
## 661  0.940350877 0.0042446172 1.000000000
## 77   0.942105263 0.0041085270 1.000000000
## 401  0.942105263 0.0041085270 1.000000000
## 78   0.946491228 0.0037714696 1.000000000
## 340  0.946491228 0.0037714696 1.000000000
## 1045 0.946491228 0.0037714696 1.000000000
## 1143 0.946491228 0.0037714696 1.000000000
## 1484 0.946491228 0.0037714696 1.000000000
## 97   0.952631579 0.0033070854 1.000000000
## 454  0.952631579 0.0033070854 1.000000000
## 514  0.952631579 0.0033070854 1.000000000
## 752  0.952631579 0.0033070854 1.000000000
## 871  0.952631579 0.0033070854 1.000000000
## 1189 0.952631579 0.0033070854 1.000000000
## 1206 0.952631579 0.0033070854 1.000000000
## 18   0.956140351 0.0030455865 1.000000000
## 818  0.956140351 0.0030455865 1.000000000
## 1244 0.956140351 0.0030455865 1.000000000
## 1327 0.956140351 0.0030455865 1.000000000
## 134  0.957894737 0.0029158769 1.000000000
## 185  0.957894737 0.0029158769 1.000000000
## 161  0.961403509 0.0026585169 1.000000000
## 480  0.961403509 0.0026585169 1.000000000
## 529  0.961403509 0.0026585169 1.000000000
## 1385 0.961403509 0.0026585169 1.000000000
## 32   0.965789474 0.0023406349 1.000000000
## 282  0.965789474 0.0023406349 1.000000000
## 490  0.965789474 0.0023406349 1.000000000
## 491  0.965789474 0.0023406349 1.000000000
## 700  0.965789474 0.0023406349 1.000000000
## 14   0.969298246 0.0020893443 1.000000000
## 19   0.969298246 0.0020893443 1.000000000
## 534  0.969298246 0.0020893443 1.000000000
## 1529 0.969298246 0.0020893443 1.000000000
## 311  0.973684211 0.0017789474 1.000000000
## 502  0.973684211 0.0017789474 1.000000000
## 1236 0.973684211 0.0017789474 1.000000000
## 1241 0.973684211 0.0017789474 1.000000000
## 1501 0.973684211 0.0017789474 1.000000000
## 108  0.978070175 0.0014726223 1.000000000
## 1129 0.978070175 0.0014726223 1.000000000
## 1356 0.978070175 0.0014726223 1.000000000
## 1410 0.978070175 0.0014726223 1.000000000
## 1425 0.978070175 0.0014726223 1.000000000
## 698  0.980701754 0.0012907566 1.000000000
## 1037 0.980701754 0.0012907566 1.000000000
## 1360 0.980701754 0.0012907566 1.000000000
## 82   0.983333333 0.0011103222 1.000000000
## 1110 0.983333333 0.0011103222 1.000000000
## 1237 0.983333333 0.0011103222 1.000000000
## 1186 0.984210526 0.0010504933 1.000000000
## 434  0.987719298 0.0008127444 1.000000000
## 530  0.987719298 0.0008127444 1.000000000
## 533  0.987719298 0.0008127444 1.000000000
## 1401 0.987719298 0.0008127444 1.000000000
## 476  0.991228070 0.0005774803 1.000000000
## 556  0.991228070 0.0005774803 1.000000000
## 1347 0.991228070 0.0005774803 1.000000000
## 1414 0.991228070 0.0005774803 1.000000000
## 1070 0.992105263 0.0005190491 1.000000000
## 380  0.993859649 0.0004026453 1.000000000
## 1036 0.993859649 0.0004026453 1.000000000
## 1240 0.994736842 0.0003446717 1.000000000
## 1502 0.995614035 0.0002868499 1.000000000
## 31   0.997368421 0.0001716594 1.000000000
## 356  0.997368421 0.0001716594 1.000000000
## 210  0.999122807 0.0000570702 1.000000000
## 1278 0.999122807 0.0000570702 1.000000000
## 602  1.000000000 0.0000000000 1.000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.797 0.75-0.83
## SPEC           0.606 0.58-0.63
## MCC            0.352      <NA>
## Informedness   0.404      <NA>
## PREC           0.409 0.37-0.44
## NPV            0.897 0.87-0.92
## FPR            0.394      <NA>
## F1             0.541      <NA>
## TP           311.000      <NA>
## FP           449.000      <NA>
## TN           691.000      <NA>
## FN            79.000      <NA>
## AUC-ROC        0.780 0.75-0.81
## AUC-PR         0.540      <NA>
## AUC-PRG        0.110      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                 Score        CI
## SENS            0.387 0.34-0.44
## SPEC            0.908 0.89-0.92
## MCC             0.345      <NA>
## Informedness    0.295      <NA>
## PREC            0.590 0.53-0.65
## NPV             0.812 0.79-0.83
## FPR             0.092      <NA>
## F1              0.467      <NA>
## TP            151.000      <NA>
## FP            105.000      <NA>
## TN           1035.000      <NA>
## FN            239.000      <NA>
## AUC-ROC         0.780 0.75-0.81
## AUC-PR          0.540      <NA>
## AUC-PRG         0.110      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##       one  zero  obs  Group TP TN FP FN      SENS       SPEC Informedness
## 151 0.812 0.188  one Group1  1 28  0  8 0.1111111 1.00000000  0.111111111
## 93  0.744 0.256 zero Group1  1 27  1  8 0.1111111 0.96428571  0.075396825
## 159 0.644 0.356  one Group1  2 27  1  7 0.2222222 0.96428571  0.186507937
## 163 0.596 0.404  one Group1  3 27  1  6 0.3333333 0.96428571  0.297619048
## 39  0.568 0.432 zero Group1  3 26  2  6 0.3333333 0.92857143  0.261904762
## 56  0.548 0.452 zero Group1  3 25  3  6 0.3333333 0.89285714  0.226190476
## 76  0.468 0.532 zero Group1  3 23  5  6 0.3333333 0.82142857  0.154761905
## 141 0.468 0.532 zero Group1  3 23  5  6 0.3333333 0.82142857  0.154761905
## 150 0.446 0.554  one Group1  4 23  5  5 0.4444444 0.82142857  0.265873016
## 168 0.414 0.586  one Group1  5 23  5  4 0.5555556 0.82142857  0.376984127
## 29  0.408 0.592 zero Group1  5 22  6  4 0.5555556 0.78571429  0.341269841
## 146 0.396 0.604  one Group1  6 22  6  3 0.6666667 0.78571429  0.452380952
## 174 0.364 0.636  one Group1  7 22  6  2 0.7777778 0.78571429  0.563492063
## 149 0.340 0.660  one Group1  8 22  6  1 0.8888889 0.78571429  0.674603175
## 87  0.326 0.674 zero Group1  8 21  7  1 0.8888889 0.75000000  0.638888889
## 96  0.316 0.684 zero Group1  8 20  8  1 0.8888889 0.71428571  0.603174603
## 18  0.298 0.702 zero Group1  8 19  9  1 0.8888889 0.67857143  0.567460317
## 138 0.284 0.716 zero Group1  8 18 10  1 0.8888889 0.64285714  0.531746032
## 41  0.280 0.720 zero Group1  8 17 11  1 0.8888889 0.60714286  0.496031746
## 63  0.276 0.724 zero Group1  8 16 12  1 0.8888889 0.57142857  0.460317460
## 14  0.260 0.740 zero Group1  8 15 13  1 0.8888889 0.53571429  0.424603175
## 27  0.224 0.776 zero Group1  8 14 14  1 0.8888889 0.50000000  0.388888889
## 31  0.210 0.790 zero Group1  8 13 15  1 0.8888889 0.46428571  0.353174603
## 8   0.206 0.794 zero Group1  8 12 16  1 0.8888889 0.42857143  0.317460317
## 80  0.196 0.804 zero Group1  8 11 17  1 0.8888889 0.39285714  0.281746032
## 68  0.176 0.824 zero Group1  8 10 18  1 0.8888889 0.35714286  0.246031746
## 10  0.166 0.834 zero Group1  8  9 19  1 0.8888889 0.32142857  0.210317460
## 61  0.164 0.836 zero Group1  8  7 21  1 0.8888889 0.25000000  0.138888889
## 71  0.164 0.836 zero Group1  8  7 21  1 0.8888889 0.25000000  0.138888889
## 49  0.152 0.848 zero Group1  8  6 22  1 0.8888889 0.21428571  0.103174603
## 36  0.150 0.850 zero Group1  8  5 23  1 0.8888889 0.17857143  0.067460317
## 59  0.142 0.858 zero Group1  8  4 24  1 0.8888889 0.14285714  0.031746032
## 127 0.124 0.876 zero Group1  8  3 25  1 0.8888889 0.10714286 -0.003968254
## 110 0.104 0.896 zero Group1  8  2 26  1 0.8888889 0.07142857 -0.039682540
## 154 0.084 0.916  one Group1  9  2 26  0 1.0000000 0.07142857  0.071428571
## 62  0.072 0.928 zero Group1  9  1 27  0 1.0000000 0.03571429  0.035714286
## 9   0.026 0.974 zero Group1  9  0 28  0 1.0000000 0.00000000  0.000000000
##          PREC       NPV         MARK        F1          MCC        FPR
## 151 1.0000000 0.7777778  0.777777778 0.2000000  0.293972368 0.00000000
## 93  0.5000000 0.7714286  0.271428571 0.1818182  0.143055418 0.03571429
## 159 0.6666667 0.7941176  0.460784314 0.3333333  0.293155132 0.03571429
## 163 0.7500000 0.8181818  0.568181818 0.4615385  0.411219809 0.03571429
## 39  0.6000000 0.8125000  0.412500000 0.4285714  0.328687868 0.07142857
## 56  0.5000000 0.8064516  0.306451613 0.4000000  0.263280148 0.10714286
## 76  0.3750000 0.7931034  0.168103448 0.3529412  0.161294792 0.17857143
## 141 0.3750000 0.7931034  0.168103448 0.3529412  0.161294792 0.17857143
## 150 0.4444444 0.8214286  0.265873016 0.4444444  0.265873016 0.17857143
## 168 0.5000000 0.8518519  0.351851852 0.5263158  0.364201267 0.17857143
## 29  0.4545455 0.8461538  0.300699301 0.5000000  0.320342945 0.21428571
## 146 0.5000000 0.8800000  0.380000000 0.5714286  0.414613991 0.21428571
## 174 0.5384615 0.9166667  0.455128205 0.6363636  0.506419916 0.21428571
## 149 0.5714286 0.9565217  0.527950311 0.6956522  0.596788870 0.21428571
## 87  0.5333333 0.9545455  0.487878788 0.6666667  0.558301296 0.25000000
## 96  0.5000000 0.9523810  0.452380952 0.6400000  0.522364529 0.28571429
## 18  0.4705882 0.9500000  0.420588235 0.6153846  0.488535703 0.32142857
## 138 0.4444444 0.9473684  0.391812865 0.5925926  0.456448175 0.35714286
## 41  0.4210526 0.9444444  0.365497076 0.5714286  0.425791208 0.39285714
## 63  0.4000000 0.9411765  0.341176471 0.5517241  0.396294696 0.42857143
## 14  0.3809524 0.9375000  0.318452381 0.5333333  0.367717136 0.46428571
## 27  0.3636364 0.9333333  0.296969697 0.5161290  0.339835571 0.50000000
## 31  0.3478261 0.9285714  0.276397516 0.5000000  0.312436526 0.53571429
## 8   0.3333333 0.9230769  0.256410256 0.4848485  0.285306995 0.57142857
## 80  0.3200000 0.9166667  0.236666667 0.4705882  0.258224503 0.60714286
## 68  0.3076923 0.9090909  0.216783217 0.4571429  0.230944914 0.64285714
## 10  0.2962963 0.9000000  0.196296296 0.4444444  0.203185970 0.67857143
## 61  0.2758621 0.8750000  0.150862069 0.4210526  0.144751736 0.75000000
## 71  0.2758621 0.8750000  0.150862069 0.4210526  0.144751736 0.75000000
## 49  0.2666667 0.8571429  0.123809524 0.4102564  0.113022115 0.78571429
## 36  0.2580645 0.8333333  0.091397849 0.4000000  0.078522149 0.82142857
## 59  0.2500000 0.8000000  0.050000000 0.3902439  0.039840954 0.85714286
## 127 0.2424242 0.7500000 -0.007575758 0.3809524 -0.005482931 0.89285714
## 110 0.2352941 0.6666667 -0.098039216 0.3720930 -0.062373432 0.92857143
## 154 0.2571429 1.0000000  0.257142857 0.4090909  0.135526185 0.92857143
## 62  0.2500000 1.0000000  0.250000000 0.4000000  0.094491118 0.96428571
## 9   0.2432432 0.0000000          NaN 0.3913043          NaN 1.00000000
##              PG         RG
## 151 1.000000000 0.00000000
## 93  0.169642857 0.00000000
## 159 0.373015873 0.00000000
## 163 0.502232143 0.03968254
## 39  0.282857143 0.03968254
## 56  0.169642857 0.03968254
## 76  0.065290179 0.03968254
## 141 0.065290179 0.03968254
## 150 0.118165785 0.11816578
## 168 0.169642857 0.22927690
## 29  0.126918536 0.22927690
## 146 0.169642857 0.37301587
## 174 0.210059172 0.54938272
## 149 0.247813411 0.75837743
## 87  0.204444444 0.75837743
## 96  0.169642857 0.75837743
## 18  0.141374197 0.75837743
## 138 0.118165785 0.75837743
## 41  0.098931539 0.75837743
## 63  0.082857143 0.75837743
## 14  0.069322967 0.75837743
## 27  0.057851240 0.75837743
## 31  0.048069133 0.75837743
## 8   0.039682540 0.75837743
## 80  0.032457143 0.75837743
## 68  0.026204565 0.75837743
## 10  0.020772095 0.75837743
## 61  0.011890606 0.75837743
## 71  0.011890606 0.75837743
## 49  0.008253968 0.75837743
## 36  0.005054259 0.75837743
## 59  0.002232143 0.75837743
## 127 0.000000000 0.75837743
## 110 0.000000000 0.75837743
## 154 0.004723032 1.00000000
## 62  0.002232143 1.00000000
## 9   0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.786   0.6-0.9
## MCC           0.597      <NA>
## Informedness  0.675      <NA>
## PREC          0.571 0.33-0.79
## NPV           0.957 0.79-0.99
## FPR           0.214      <NA>
## F1            0.696      <NA>
## TP            8.000      <NA>
## FP            6.000      <NA>
## TN           22.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.780 0.59-0.97
## AUC-PR        0.440      <NA>
## AUC-PRG       0.190      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.333 0.12-0.65
## SPEC          0.893 0.73-0.96
## MCC           0.263      <NA>
## Informedness  0.226      <NA>
## PREC          0.500 0.19-0.81
## NPV           0.806 0.64-0.91
## FPR           0.107      <NA>
## F1            0.400      <NA>
## TP            3.000      <NA>
## FP            3.000      <NA>
## TN           25.000      <NA>
## FN            6.000      <NA>
## AUC-ROC       0.780 0.59-0.97
## AUC-PR        0.440      <NA>
## AUC-PRG       0.190      <NA>

xgboost

viz_perf_f(model_m=xgb_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##               one        zero  obs  Group  TP   TN   FP  FN        SENS
## 726  0.9975309968 0.002469003  one Group1   1 1140    0 389 0.002564103
## 482  0.9956024885 0.004397511  one Group1   2 1140    0 388 0.005128205
## 481  0.9932335019 0.006766498  one Group1   3 1140    0 387 0.007692308
## 32   0.9928408861 0.007159114  one Group1   4 1140    0 386 0.010256410
## 1050 0.9892528653 0.010747135  one Group1   5 1140    0 385 0.012820513
## 1414 0.9892442226 0.010755777  one Group1   6 1140    0 384 0.015384615
## 1131 0.9855798483 0.014420152 zero Group1   6 1139    1 384 0.015384615
## 1294 0.9855227470 0.014477253  one Group1   7 1139    1 383 0.017948718
## 812  0.9790508747 0.020949125  one Group1   8 1139    1 382 0.020512821
## 114  0.9789336920 0.021066308  one Group1   9 1139    1 381 0.023076923
## 974  0.9788278937 0.021172106  one Group1  10 1139    1 380 0.025641026
## 1491 0.9783399701 0.021660030  one Group1  11 1139    1 379 0.028205128
## 91   0.9770306349 0.022969365  one Group1  12 1139    1 378 0.030769231
## 1298 0.9765346050 0.023465395  one Group1  13 1139    1 377 0.033333333
## 362  0.9762166142 0.023783386  one Group1  14 1139    1 376 0.035897436
## 486  0.9751296043 0.024870396  one Group1  15 1139    1 375 0.038461538
## 1380 0.9748432636 0.025156736 zero Group1  15 1138    2 375 0.038461538
## 767  0.9698405862 0.030159414 zero Group1  15 1137    3 375 0.038461538
## 145  0.9695902467 0.030409753  one Group1  16 1137    3 374 0.041025641
## 11   0.9683199525 0.031680048 zero Group1  16 1136    4 374 0.041025641
## 241  0.9682960510 0.031703949 zero Group1  16 1135    5 374 0.041025641
## 1452 0.9649074078 0.035092592  one Group1  17 1135    5 373 0.043589744
## 143  0.9644808769 0.035519123  one Group1  18 1135    5 372 0.046153846
## 1495 0.9618577957 0.038142204  one Group1  19 1135    5 371 0.048717949
## 1293 0.9618085027 0.038191497  one Group1  20 1135    5 370 0.051282051
## 1469 0.9590142369 0.040985763 zero Group1  20 1134    6 370 0.051282051
## 1417 0.9579771161 0.042022884  one Group1  21 1134    6 369 0.053846154
## 49   0.9576026797 0.042397320  one Group1  22 1134    6 368 0.056410256
## 1061 0.9573211670 0.042678833 zero Group1  22 1133    7 368 0.056410256
## 310  0.9546599984 0.045340002 zero Group1  22 1132    8 368 0.056410256
## 1217 0.9543330073 0.045666993  one Group1  23 1132    8 367 0.058974359
## 725  0.9509685636 0.049031436  one Group1  24 1132    8 366 0.061538462
## 491  0.9502633214 0.049736679 zero Group1  24 1131    9 366 0.061538462
## 282  0.9502597451 0.049740255  one Group1  25 1131    9 365 0.064102564
## 1127 0.9486791492 0.051320851  one Group1  26 1131    9 364 0.066666667
## 684  0.9486766458 0.051323354  one Group1  27 1131    9 363 0.069230769
## 439  0.9470636845 0.052936316  one Group1  28 1131    9 362 0.071794872
## 438  0.9449031353 0.055096865  one Group1  29 1131    9 361 0.074358974
## 510  0.9402770996 0.059722900 zero Group1  29 1130   10 361 0.074358974
## 1413 0.9402343035 0.059765697  one Group1  30 1130   10 360 0.076923077
## 153  0.9400288463 0.059971154  one Group1  31 1130   10 359 0.079487179
## 1509 0.9397065639 0.060293436 zero Group1  31 1129   11 359 0.079487179
## 285  0.9395159483 0.060484052  one Group1  32 1129   11 358 0.082051282
## 1300 0.9383484721 0.061651528  one Group1  33 1129   11 357 0.084615385
## 761  0.9364578724 0.063542128  one Group1  34 1129   11 356 0.087179487
## 1420 0.9363217950 0.063678205  one Group1  35 1129   11 355 0.089743590
## 926  0.9352387190 0.064761281  one Group1  36 1129   11 354 0.092307692
## 1312 0.9342369437 0.065763056 zero Group1  36 1128   12 354 0.092307692
## 1053 0.9335083961 0.066491604  one Group1  37 1128   12 353 0.094871795
## 1051 0.9319618344 0.068038166  one Group1  38 1128   12 352 0.097435897
## 86   0.9308603406 0.069139659  one Group1  39 1128   12 351 0.100000000
## 292  0.9300522208 0.069947779 zero Group1  39 1127   13 351 0.100000000
## 1290 0.9279713631 0.072028637  one Group1  40 1127   13 350 0.102564103
## 602  0.9277437329 0.072256267  one Group1  41 1127   13 349 0.105128205
## 78   0.9272297025 0.072770298 zero Group1  41 1126   14 349 0.105128205
## 850  0.9235582948 0.076441705  one Group1  42 1126   14 348 0.107692308
## 687  0.9202654362 0.079734564  one Group1  43 1126   14 347 0.110256410
## 1496 0.9202275276 0.079772472  one Group1  44 1126   14 346 0.112820513
## 1249 0.9195100069 0.080489993  one Group1  45 1126   14 345 0.115384615
## 87   0.9164952636 0.083504736 zero Group1  45 1125   15 345 0.115384615
## 1497 0.9157844782 0.084215522  one Group1  46 1125   15 344 0.117948718
## 226  0.9139236212 0.086076379  one Group1  47 1125   15 343 0.120512821
## 1188 0.9137669206 0.086233079 zero Group1  47 1124   16 343 0.120512821
## 34   0.9123190045 0.087680995 zero Group1  47 1123   17 343 0.120512821
## 174  0.9096400738 0.090359926  one Group1  48 1123   17 342 0.123076923
## 236  0.9088960290 0.091103971  one Group1  49 1123   17 341 0.125641026
## 1030 0.9080401063 0.091959894 zero Group1  49 1122   18 341 0.125641026
## 1006 0.9072629809 0.092737019  one Group1  50 1122   18 340 0.128205128
## 177  0.9059568644 0.094043136 zero Group1  50 1121   19 340 0.128205128
## 213  0.9057950974 0.094204903  one Group1  51 1121   19 339 0.130769231
## 1071 0.9044499993 0.095550001 zero Group1  51 1120   20 339 0.130769231
## 567  0.9030061364 0.096993864  one Group1  52 1120   20 338 0.133333333
## 1476 0.9026275277 0.097372472 zero Group1  52 1119   21 338 0.133333333
## 218  0.9023482203 0.097651780  one Group1  53 1119   21 337 0.135897436
## 29   0.9017114639 0.098288536  one Group1  54 1119   21 336 0.138461538
## 1287 0.9006760120 0.099323988 zero Group1  54 1118   22 336 0.138461538
## 1342 0.9003353119 0.099664688  one Group1  55 1118   22 335 0.141025641
## 975  0.8991146088 0.100885391  one Group1  56 1118   22 334 0.143589744
## 1087 0.8987854123 0.101214588  one Group1  57 1118   22 333 0.146153846
## 804  0.8987480402 0.101251960  one Group1  58 1118   22 332 0.148717949
## 807  0.8980330229 0.101966977  one Group1  59 1118   22 331 0.151282051
## 925  0.8977968693 0.102203131  one Group1  60 1118   22 330 0.153846154
## 1213 0.8967878222 0.103212178  one Group1  61 1118   22 329 0.156410256
## 1214 0.8966729641 0.103327036  one Group1  62 1118   22 328 0.158974359
## 374  0.8962291479 0.103770852 zero Group1  62 1117   23 328 0.158974359
## 688  0.8960466981 0.103953302  one Group1  63 1117   23 327 0.161538462
## 857  0.8957453966 0.104254603 zero Group1  63 1116   24 327 0.161538462
## 126  0.8947267532 0.105273247 zero Group1  63 1115   25 327 0.161538462
## 275  0.8946739435 0.105326056 zero Group1  63 1114   26 327 0.161538462
## 1335 0.8895775676 0.110422432  one Group1  64 1114   26 326 0.164102564
## 574  0.8861591220 0.113840878 zero Group1  64 1113   27 326 0.164102564
## 1432 0.8839507699 0.116049230 zero Group1  64 1112   28 326 0.164102564
## 535  0.8833693862 0.116630614 zero Group1  64 1111   29 326 0.164102564
## 1278 0.8823046684 0.117695332 zero Group1  64 1110   30 326 0.164102564
## 1088 0.8819122910 0.118087709  one Group1  65 1110   30 325 0.166666667
## 216  0.8797369599 0.120263040 zero Group1  65 1109   31 325 0.166666667
## 196  0.8789860010 0.121013999 zero Group1  65 1108   32 325 0.166666667
## 1215 0.8785303235 0.121469676  one Group1  66 1108   32 324 0.169230769
## 844  0.8764824271 0.123517573  one Group1  67 1108   32 323 0.171794872
## 932  0.8732697964 0.126730204  one Group1  68 1108   32 322 0.174358974
## 107  0.8721613884 0.127838612 zero Group1  68 1107   33 322 0.174358974
## 82   0.8713172078 0.128682792 zero Group1  68 1106   34 322 0.174358974
## 1216 0.8702595234 0.129740477  one Group1  69 1106   34 321 0.176923077
## 608  0.8681926131 0.131807387  one Group1  70 1106   34 320 0.179487179
## 441  0.8668836951 0.133116305  one Group1  71 1106   34 319 0.182051282
## 306  0.8658723831 0.134127617  one Group1  72 1106   34 318 0.184615385
## 305  0.8655905128 0.134409487  one Group1  73 1106   34 317 0.187179487
## 945  0.8636789322 0.136321068 zero Group1  73 1105   35 317 0.187179487
## 1252 0.8633499146 0.136650085 zero Group1  73 1104   36 317 0.187179487
## 80   0.8627185822 0.137281418  one Group1  74 1104   36 316 0.189743590
## 433  0.8598030210 0.140196979 zero Group1  74 1103   37 316 0.189743590
## 183  0.8593633175 0.140636683  one Group1  75 1103   37 315 0.192307692
## 189  0.8583370447 0.141662955 zero Group1  75 1102   38 315 0.192307692
## 26   0.8546881080 0.145311892  one Group1  76 1102   38 314 0.194871795
## 972  0.8529682159 0.147031784  one Group1  77 1102   38 313 0.197435897
## 1281 0.8523148298 0.147685170 zero Group1  77 1101   39 313 0.197435897
## 601  0.8517646790 0.148235321  one Group1  78 1101   39 312 0.200000000
## 1210 0.8502416015 0.149758399  one Group1  79 1101   39 311 0.202564103
## 64   0.8497005105 0.150299489  one Group1  80 1101   39 310 0.205128205
## 1058 0.8491591215 0.150840878  one Group1  81 1101   39 309 0.207692308
## 774  0.8480961323 0.151903868 zero Group1  81 1100   40 309 0.207692308
## 267  0.8467229605 0.153277040  one Group1  82 1100   40 308 0.210256410
## 260  0.8456979394 0.154302061  one Group1  83 1100   40 307 0.212820513
## 73   0.8422763348 0.157723665 zero Group1  83 1099   41 307 0.212820513
## 1218 0.8396448493 0.160355151  one Group1  84 1099   41 306 0.215384615
## 172  0.8393865228 0.160613477  one Group1  85 1099   41 305 0.217948718
## 85   0.8383890986 0.161610901  one Group1  86 1099   41 304 0.220512821
## 146  0.8371195197 0.162880480  one Group1  87 1099   41 303 0.223076923
## 1269 0.8327848315 0.167215168 zero Group1  87 1098   42 303 0.223076923
## 1177 0.8326650858 0.167334914  one Group1  88 1098   42 302 0.225641026
## 92   0.8308234215 0.169176579 zero Group1  88 1097   43 302 0.225641026
## 1090 0.8306587338 0.169341266  one Group1  89 1097   43 301 0.228205128
## 713  0.8273196816 0.172680318 zero Group1  89 1096   44 301 0.228205128
## 865  0.8271372914 0.172862709 zero Group1  89 1095   45 301 0.228205128
## 967  0.8260160685 0.173983932  one Group1  90 1095   45 300 0.230769231
## 931  0.8249285817 0.175071418  one Group1  91 1095   45 299 0.233333333
## 1098 0.8240679502 0.175932050  one Group1  92 1095   45 298 0.235897436
## 1492 0.8236741424 0.176325858  one Group1  93 1095   45 297 0.238461538
## 28   0.8235247731 0.176475227  one Group1  94 1095   45 296 0.241025641
## 847  0.8234354854 0.176564515  one Group1  95 1095   45 295 0.243589744
## 1126 0.8230965137 0.176903486  one Group1  96 1095   45 294 0.246153846
## 1093 0.8220435977 0.177956402  one Group1  97 1095   45 293 0.248717949
## 534  0.8205049634 0.179495037 zero Group1  97 1094   46 293 0.248717949
## 200  0.8204824924 0.179517508 zero Group1  97 1093   47 293 0.248717949
## 316  0.8197105527 0.180289447 zero Group1  97 1092   48 293 0.248717949
## 690  0.8173621893 0.182637811  one Group1  98 1092   48 292 0.251282051
## 1424 0.8168923855 0.183107615  one Group1  99 1092   48 291 0.253846154
## 732  0.8094143867 0.190585613  one Group1 100 1092   48 290 0.256410256
## 1089 0.8015507460 0.198449254  one Group1 101 1092   48 289 0.258974359
## 1338 0.8005065322 0.199493468  one Group1 102 1092   48 288 0.261538462
## 201  0.7968496084 0.203150392  one Group1 103 1092   48 287 0.264102564
## 966  0.7964016795 0.203598320  one Group1 104 1092   48 286 0.266666667
## 335  0.7945310473 0.205468953 zero Group1 104 1091   49 286 0.266666667
## 936  0.7935210466 0.206478953  one Group1 105 1091   49 285 0.269230769
## 168  0.7916799784 0.208320022  one Group1 106 1091   49 284 0.271794872
## 297  0.7916297317 0.208370268  one Group1 107 1091   49 283 0.274358974
## 53   0.7909863591 0.209013641 zero Group1 107 1090   50 283 0.274358974
## 166  0.7893987298 0.210601270  one Group1 108 1090   50 282 0.276923077
## 1460 0.7891939878 0.210806012 zero Group1 108 1089   51 282 0.276923077
## 392  0.7862405777 0.213759422 zero Group1 108 1088   52 282 0.276923077
## 762  0.7861705422 0.213829458  one Group1 109 1088   52 281 0.279487179
## 1373 0.7861183286 0.213881671  one Group1 110 1088   52 280 0.282051282
## 488  0.7856526375 0.214347363  one Group1 111 1088   52 279 0.284615385
## 238  0.7832709551 0.216729045 zero Group1 111 1087   53 279 0.284615385
## 1012 0.7821094990 0.217890501 zero Group1 111 1086   54 279 0.284615385
## 1301 0.7806926370 0.219307363  one Group1 112 1086   54 278 0.287179487
## 679  0.7802685499 0.219731450 zero Group1 112 1085   55 278 0.287179487
## 97   0.7798547745 0.220145226  one Group1 113 1085   55 277 0.289743590
## 808  0.7730625868 0.226937413  one Group1 114 1085   55 276 0.292307692
## 41   0.7725534439 0.227446556  one Group1 115 1085   55 275 0.294871795
## 443  0.7713323236 0.228667676  one Group1 116 1085   55 274 0.297435897
## 939  0.7704901695 0.229509830 zero Group1 116 1084   56 274 0.297435897
## 779  0.7697777152 0.230222285 zero Group1 116 1083   57 274 0.297435897
## 887  0.7686036825 0.231396317 zero Group1 116 1082   58 274 0.297435897
## 650  0.7679440975 0.232055902 zero Group1 116 1081   59 274 0.297435897
## 251  0.7652593851 0.234740615  one Group1 117 1081   59 273 0.300000000
## 36   0.7645255923 0.235474408 zero Group1 117 1080   60 273 0.300000000
## 1506 0.7638629079 0.236137092 zero Group1 117 1079   61 273 0.300000000
## 1178 0.7636364102 0.236363590  one Group1 118 1079   61 272 0.302564103
## 500  0.7628077269 0.237192273 zero Group1 118 1078   62 272 0.302564103
## 689  0.7627066970 0.237293303  one Group1 119 1078   62 271 0.305128205
## 279  0.7624699473 0.237530053 zero Group1 119 1077   63 271 0.305128205
## 1226 0.7611758113 0.238824189 zero Group1 119 1076   64 271 0.305128205
## 137  0.7589145899 0.241085410  one Group1 120 1076   64 270 0.307692308
## 1454 0.7577837110 0.242216289 zero Group1 120 1075   65 270 0.307692308
## 806  0.7574155927 0.242584407  one Group1 121 1075   65 269 0.310256410
## 447  0.7573705316 0.242629468  one Group1 122 1075   65 268 0.312820513
## 366  0.7553260922 0.244673908  one Group1 123 1075   65 267 0.315384615
## 323  0.7551623583 0.244837642 zero Group1 123 1074   66 267 0.315384615
## 427  0.7543627024 0.245637298 zero Group1 123 1073   67 267 0.315384615
## 1292 0.7538793087 0.246120691  one Group1 124 1073   67 266 0.317948718
## 965  0.7510818243 0.248918176  one Group1 125 1073   67 265 0.320512821
## 1008 0.7497107983 0.250289202  one Group1 126 1073   67 264 0.323076923
## 148  0.7482565641 0.251743436 zero Group1 126 1072   68 264 0.323076923
## 502  0.7476695776 0.252330422 zero Group1 126 1071   69 264 0.323076923
## 1324 0.7472155094 0.252784491 zero Group1 126 1070   70 264 0.323076923
## 1057 0.7455919385 0.254408062  one Group1 127 1070   70 263 0.325641026
## 731  0.7402859330 0.259714067  one Group1 128 1070   70 262 0.328205128
## 22   0.7399545908 0.260045409  one Group1 129 1070   70 261 0.330769231
## 152  0.7394956350 0.260504365 zero Group1 129 1069   71 261 0.330769231
## 202  0.7394726872 0.260527313 zero Group1 129 1068   72 261 0.330769231
## 99   0.7384207249 0.261579275 zero Group1 129 1067   73 261 0.330769231
## 724  0.7363975048 0.263602495  one Group1 130 1067   73 260 0.333333333
## 446  0.7363548279 0.263645172  one Group1 131 1067   73 259 0.335897436
## 1500 0.7361981273 0.263801873  one Group1 132 1067   73 258 0.338461538
## 232  0.7338117957 0.266188204  one Group1 133 1067   73 257 0.341025641
## 1299 0.7324662805 0.267533720  one Group1 134 1067   73 256 0.343589744
## 1199 0.7301493287 0.269850671 zero Group1 134 1066   74 256 0.343589744
## 1258 0.7274881601 0.272511840 zero Group1 134 1065   75 256 0.343589744
## 33   0.7219235897 0.278076410  one Group1 135 1065   75 255 0.346153846
## 337  0.7166324258 0.283367574 zero Group1 135 1064   76 255 0.346153846
## 93   0.7160065174 0.283993483 zero Group1 135 1063   77 255 0.346153846
## 1003 0.7155221105 0.284477890 zero Group1 135 1062   78 255 0.346153846
## 1474 0.7140267491 0.285973251 zero Group1 135 1061   79 255 0.346153846
## 231  0.7132241130 0.286775887 zero Group1 135 1060   80 255 0.346153846
## 269  0.7128627300 0.287137270 zero Group1 135 1059   81 255 0.346153846
## 1191 0.7117004991 0.288299501 zero Group1 135 1058   82 255 0.346153846
## 658  0.7076761127 0.292323887 zero Group1 135 1057   83 255 0.346153846
## 222  0.7074252963 0.292574704  one Group1 136 1057   83 254 0.348717949
## 1456 0.7073991895 0.292600811 zero Group1 136 1056   84 254 0.348717949
## 563  0.7061895728 0.293810427  one Group1 137 1056   84 253 0.351282051
## 149  0.7024903893 0.297509611 zero Group1 137 1055   85 253 0.351282051
## 801  0.7020402551 0.297959745 zero Group1 137 1054   86 253 0.351282051
## 81   0.7016168237 0.298383176  one Group1 138 1054   86 252 0.353846154
## 320  0.7008698583 0.299130142 zero Group1 138 1053   87 252 0.353846154
## 19   0.6969316602 0.303068340 zero Group1 138 1052   88 252 0.353846154
## 729  0.6963639259 0.303636074  one Group1 139 1052   88 251 0.356410256
## 442  0.6923762560 0.307623744  one Group1 140 1052   88 250 0.358974359
## 7    0.6899566650 0.310043335  one Group1 141 1052   88 249 0.361538462
## 899  0.6882405877 0.311759412 zero Group1 141 1051   89 249 0.361538462
## 562  0.6875895262 0.312410474  one Group1 142 1051   89 248 0.364102564
## 1    0.6849535108 0.315046489  one Group1 143 1051   89 247 0.366666667
## 1370 0.6842404008 0.315759599  one Group1 144 1051   89 246 0.369230769
## 31   0.6841794848 0.315820515  one Group1 145 1051   89 245 0.371794872
## 76   0.6828557253 0.317144275  one Group1 146 1051   89 244 0.374358974
## 1085 0.6820772886 0.317922711 zero Group1 146 1050   90 244 0.374358974
## 191  0.6809026599 0.319097340 zero Group1 146 1049   91 244 0.374358974
## 266  0.6784305573 0.321569443  one Group1 147 1049   91 243 0.376923077
## 705  0.6778848171 0.322115183 zero Group1 147 1048   92 243 0.376923077
## 1521 0.6773825884 0.322617412 zero Group1 147 1047   93 243 0.376923077
## 872  0.6764570475 0.323542953 zero Group1 147 1046   94 243 0.376923077
## 1330 0.6734954119 0.326504588 zero Group1 147 1045   95 243 0.376923077
## 1377 0.6708895564 0.329110444 zero Group1 147 1044   96 243 0.376923077
## 824  0.6686902642 0.331309736 zero Group1 147 1043   97 243 0.376923077
## 1328 0.6675804853 0.332419515 zero Group1 147 1042   98 243 0.376923077
## 66   0.6672230363 0.332776964  one Group1 148 1042   98 242 0.379487179
## 194  0.6651472449 0.334852755 zero Group1 148 1041   99 242 0.379487179
## 1134 0.6645138264 0.335486174 zero Group1 148 1040  100 242 0.379487179
## 969  0.6621529460 0.337847054  one Group1 149 1040  100 241 0.382051282
## 181  0.6599992514 0.340000749 zero Group1 149 1039  101 241 0.382051282
## 1010 0.6581612229 0.341838777 zero Group1 149 1038  102 241 0.382051282
## 905  0.6557713747 0.344228625 zero Group1 149 1037  103 241 0.382051282
## 291  0.6540794373 0.345920563 zero Group1 149 1036  104 241 0.382051282
## 105  0.6475072503 0.352492750 zero Group1 149 1035  105 241 0.382051282
## 1390 0.6471145749 0.352885425 zero Group1 149 1034  106 241 0.382051282
## 1170 0.6470260620 0.352973938  one Group1 150 1034  106 240 0.384615385
## 1173 0.6454603672 0.354539633  one Group1 151 1034  106 239 0.387179487
## 1073 0.6439672112 0.356032789 zero Group1 151 1033  107 239 0.387179487
## 361  0.6439667940 0.356033206  one Group1 152 1033  107 238 0.389743590
## 118  0.6431567073 0.356843293  one Group1 153 1033  107 237 0.392307692
## 1181 0.6422857046 0.357714295 zero Group1 153 1032  108 237 0.392307692
## 1096 0.6405570507 0.359442949  one Group1 154 1032  108 236 0.394871795
## 501  0.6374997497 0.362500250 zero Group1 154 1031  109 236 0.394871795
## 223  0.6371961236 0.362803876 zero Group1 154 1030  110 236 0.394871795
## 77   0.6362758279 0.363724172 zero Group1 154 1029  111 236 0.394871795
## 135  0.6356899738 0.364310026  one Group1 155 1029  111 235 0.397435897
## 250  0.6342454553 0.365754545  one Group1 156 1029  111 234 0.400000000
## 848  0.6307477355 0.369252264  one Group1 157 1029  111 233 0.402564103
## 483  0.6304414272 0.369558573  one Group1 158 1029  111 232 0.405128205
## 346  0.6297259927 0.370274007 zero Group1 158 1028  112 232 0.405128205
## 1348 0.6296215653 0.370378435 zero Group1 158 1027  113 232 0.405128205
## 94   0.6279482245 0.372051775 zero Group1 158 1026  114 232 0.405128205
## 1343 0.6279368997 0.372063100  one Group1 159 1026  114 231 0.407692308
## 1011 0.6270192266 0.372980773 zero Group1 159 1025  115 231 0.407692308
## 423  0.6262173653 0.373782635 zero Group1 159 1024  116 231 0.407692308
## 360  0.6253044605 0.374695539  one Group1 160 1024  116 230 0.410256410
## 859  0.6232323050 0.376767695 zero Group1 160 1023  117 230 0.410256410
## 108  0.6180552244 0.381944776  one Group1 161 1023  117 229 0.412820513
## 1481 0.6132684350 0.386731565 zero Group1 161 1022  118 229 0.412820513
## 1174 0.6128590703 0.387140930  one Group1 162 1022  118 228 0.415384615
## 309  0.6124338508 0.387566149  one Group1 163 1022  118 227 0.417948718
## 703  0.6038589478 0.396141052 zero Group1 163 1021  119 227 0.417948718
## 127  0.6022400856 0.397759914 zero Group1 163 1020  120 227 0.417948718
## 1297 0.6019289494 0.398071051  one Group1 164 1020  120 226 0.420512821
## 886  0.6010969281 0.398903072 zero Group1 164 1019  121 226 0.420512821
## 417  0.5977417231 0.402258277 zero Group1 164 1018  122 226 0.420512821
## 956  0.5976423025 0.402357697 zero Group1 164 1017  123 226 0.420512821
## 768  0.5966159701 0.403384030 zero Group1 164 1016  124 226 0.420512821
## 851  0.5959438682 0.404056132  one Group1 165 1016  124 225 0.423076923
## 798  0.5945662260 0.405433774 zero Group1 165 1015  125 225 0.423076923
## 1013 0.5923665762 0.407633424 zero Group1 165 1014  126 225 0.423076923
## 381  0.5923421383 0.407657862 zero Group1 165 1013  127 225 0.423076923
## 764  0.5911037326 0.408896267  one Group1 166 1013  127 224 0.425641026
## 620  0.5894927382 0.410507262 zero Group1 166 1012  128 224 0.425641026
## 1528 0.5837306976 0.416269302 zero Group1 166 1011  129 224 0.425641026
## 986  0.5815313458 0.418468654 zero Group1 166 1010  130 224 0.425641026
## 618  0.5802804828 0.419719517 zero Group1 166 1009  131 224 0.425641026
## 284  0.5799187422 0.420081258 zero Group1 166 1008  132 224 0.425641026
## 853  0.5795632601 0.420436740  one Group1 167 1008  132 223 0.428205128
## 570  0.5773475766 0.422652423  one Group1 168 1008  132 222 0.430769231
## 156  0.5747485757 0.425251424 zero Group1 168 1007  133 222 0.430769231
## 505  0.5736829042 0.426317096 zero Group1 168 1006  134 222 0.430769231
## 1238 0.5711876154 0.428812385 zero Group1 168 1005  135 222 0.430769231
## 693  0.5676569939 0.432343006  one Group1 169 1005  135 221 0.433333333
## 120  0.5667188168 0.433281183 zero Group1 169 1004  136 221 0.433333333
## 628  0.5639542341 0.436045766 zero Group1 169 1003  137 221 0.433333333
## 522  0.5631796122 0.436820388 zero Group1 169 1002  138 221 0.433333333
## 1498 0.5623697639 0.437630236  one Group1 170 1002  138 220 0.435897436
## 818  0.5620632768 0.437936723 zero Group1 170 1001  139 220 0.435897436
## 57   0.5608180165 0.439181983  one Group1 171 1001  139 219 0.438461538
## 188  0.5554774404 0.444522560 zero Group1 171 1000  140 219 0.438461538
## 564  0.5548545718 0.445145428  one Group1 172 1000  140 218 0.441025641
## 254  0.5541530252 0.445846975  one Group1 173 1000  140 217 0.443589744
## 1379 0.5506406426 0.449359357 zero Group1 173  999  141 217 0.443589744
## 849  0.5499652028 0.450034797  one Group1 174  999  141 216 0.446153846
## 281  0.5495207310 0.450479269 zero Group1 174  998  142 216 0.446153846
## 288  0.5480141640 0.451985836 zero Group1 174  997  143 216 0.446153846
## 229  0.5465951562 0.453404844  one Group1 175  997  143 215 0.448717949
## 190  0.5453272462 0.454672754 zero Group1 175  996  144 215 0.448717949
## 929  0.5448162556 0.455183744  one Group1 176  996  144 214 0.451282051
## 364  0.5446543694 0.455345631  one Group1 177  996  144 213 0.453846154
## 651  0.5439535975 0.456046402 zero Group1 177  995  145 213 0.453846154
## 1113 0.5369155407 0.463084459 zero Group1 177  994  146 213 0.453846154
## 298  0.5363321304 0.463667870  one Group1 178  994  146 212 0.456410256
## 566  0.5354192853 0.464580715  one Group1 179  994  146 211 0.458974359
## 1266 0.5339568257 0.466043174 zero Group1 179  993  147 211 0.458974359
## 457  0.5325443745 0.467455626 zero Group1 179  992  148 211 0.458974359
## 258  0.5324848294 0.467515171 zero Group1 179  991  149 211 0.458974359
## 1056 0.5309029222 0.469097078  one Group1 180  991  149 210 0.461538462
## 123  0.5307113528 0.469288647 zero Group1 180  990  150 210 0.461538462
## 199  0.5306410789 0.469358921 zero Group1 180  989  151 210 0.461538462
## 765  0.5301676393 0.469832361 zero Group1 180  988  152 210 0.461538462
## 1060 0.5259320140 0.474067986 zero Group1 180  987  153 210 0.461538462
## 775  0.5234068036 0.476593196 zero Group1 180  986  154 210 0.461538462
## 1376 0.5207958221 0.479204178 zero Group1 180  985  155 210 0.461538462
## 833  0.5182759166 0.481724083 zero Group1 180  984  156 210 0.461538462
## 485  0.5178329349 0.482167065  one Group1 181  984  156 209 0.464102564
## 1416 0.5165460110 0.483453989  one Group1 182  984  156 208 0.466666667
## 856  0.5153714418 0.484628558 zero Group1 182  983  157 208 0.466666667
## 805  0.5081226230 0.491877377  one Group1 183  983  157 207 0.469230769
## 1499 0.5062451959 0.493754804  one Group1 184  983  157 206 0.471794872
## 1516 0.5029656887 0.497034311 zero Group1 184  982  158 206 0.471794872
## 365  0.5008643270 0.499135673  one Group1 185  982  158 205 0.474358974
## 416  0.5007699728 0.499230027 zero Group1 185  981  159 205 0.474358974
## 1493 0.5002523661 0.499747634  one Group1 186  981  159 204 0.476923077
## 617  0.4999801517 0.500019848 zero Group1 186  980  160 204 0.476923077
## 727  0.4990234971 0.500976503  one Group1 187  980  160 203 0.479487179
## 111  0.4980044365 0.501995564 zero Group1 187  979  161 203 0.479487179
## 1171 0.4970151484 0.502984852  one Group1 188  979  161 202 0.482051282
## 1251 0.4962591529 0.503740847  one Group1 189  979  161 201 0.484615385
## 1042 0.4941946268 0.505805373 zero Group1 189  978  162 201 0.484615385
## 217  0.4908242226 0.509175777  one Group1 190  978  162 200 0.487179487
## 640  0.4904092848 0.509590715  one Group1 191  978  162 199 0.489743590
## 106  0.4878240526 0.512175947 zero Group1 191  977  163 199 0.489743590
## 1368 0.4869743288 0.513025671 zero Group1 191  976  164 199 0.489743590
## 109  0.4863200188 0.513679981 zero Group1 191  975  165 199 0.489743590
## 370  0.4853034616 0.514696538  one Group1 192  975  165 198 0.492307692
## 875  0.4852189124 0.514781088 zero Group1 192  974  166 198 0.492307692
## 164  0.4850220680 0.514977932  one Group1 193  974  166 197 0.494871795
## 1477 0.4848464727 0.515153527 zero Group1 193  973  167 197 0.494871795
## 227  0.4833193123 0.516680688 zero Group1 193  972  168 197 0.494871795
## 1133 0.4818333089 0.518166691 zero Group1 193  971  169 197 0.494871795
## 524  0.4810045660 0.518995434 zero Group1 193  970  170 197 0.494871795
## 659  0.4784087241 0.521591276 zero Group1 193  969  171 197 0.494871795
## 542  0.4757755995 0.524224401 zero Group1 193  968  172 197 0.494871795
## 160  0.4734441340 0.526555866 zero Group1 193  967  173 197 0.494871795
## 694  0.4702368081 0.529763192  one Group1 194  967  173 196 0.497435897
## 968  0.4687154591 0.531284541  one Group1 195  967  173 195 0.500000000
## 96   0.4677968621 0.532203138  one Group1 196  967  173 194 0.502564103
## 747  0.4667616189 0.533238381 zero Group1 196  966  174 194 0.502564103
## 1055 0.4636830986 0.536316901  one Group1 197  966  174 193 0.505128205
## 1048 0.4624568820 0.537543118  one Group1 198  966  174 192 0.507692308
## 208  0.4604581892 0.539541811 zero Group1 198  965  175 192 0.507692308
## 158  0.4584637284 0.541536272  one Group1 199  965  175 191 0.510256410
## 811  0.4551236629 0.544876337  one Group1 200  965  175 190 0.512820513
## 301  0.4546961784 0.545303822  one Group1 201  965  175 189 0.515384615
## 1401 0.4535209239 0.546479076 zero Group1 201  964  176 189 0.515384615
## 113  0.4516522586 0.548347741 zero Group1 201  963  177 189 0.515384615
## 1494 0.4503538609 0.549646139  one Group1 202  963  177 188 0.517948718
## 402  0.4502811432 0.549718857 zero Group1 202  962  178 188 0.517948718
## 686  0.4485099912 0.551490009  one Group1 203  962  178 187 0.520512821
## 1101 0.4462103248 0.553789675 zero Group1 203  961  179 187 0.520512821
## 884  0.4456271231 0.554372877  one Group1 204  961  179 186 0.523076923
## 560  0.4451186359 0.554881364  one Group1 205  961  179 185 0.525641026
## 265  0.4430831671 0.556916833  one Group1 206  961  179 184 0.528205128
## 371  0.4417459965 0.558254004  one Group1 207  961  179 183 0.530769231
## 180  0.4392800033 0.560719997 zero Group1 207  960  180 183 0.530769231
## 56   0.4376283288 0.562371671 zero Group1 207  959  181 183 0.530769231
## 783  0.4375864863 0.562413514 zero Group1 207  958  182 183 0.530769231
## 1161 0.4359669387 0.564033061 zero Group1 207  957  183 183 0.530769231
## 809  0.4357594252 0.564240575  one Group1 208  957  183 182 0.533333333
## 759  0.4353741407 0.564625859 zero Group1 208  956  184 182 0.533333333
## 1242 0.4337498844 0.566250116 zero Group1 208  955  185 182 0.533333333
## 211  0.4323176146 0.567682385  one Group1 209  955  185 181 0.535897436
## 758  0.4292201698 0.570779830 zero Group1 209  954  186 181 0.535897436
## 624  0.4247159064 0.575284094 zero Group1 209  953  187 181 0.535897436
## 368  0.4184655845 0.581534415  one Group1 210  953  187 180 0.538461538
## 504  0.4182907939 0.581709206 zero Group1 210  952  188 180 0.538461538
## 133  0.4156699181 0.584330082 zero Group1 210  951  189 180 0.538461538
## 622  0.4156175256 0.584382474 zero Group1 210  950  190 180 0.538461538
## 927  0.4155410230 0.584458977  one Group1 211  950  190 179 0.541025641
## 1423 0.4135767221 0.586423278  one Group1 212  950  190 178 0.543589744
## 459  0.4103330970 0.589666903 zero Group1 212  949  191 178 0.543589744
## 753  0.4090828896 0.590917110 zero Group1 212  948  192 178 0.543589744
## 506  0.4086378515 0.591362149 zero Group1 212  947  193 178 0.543589744
## 810  0.4076460898 0.592353910  one Group1 213  947  193 177 0.546153846
## 1451 0.4070606828 0.592939317 zero Group1 213  946  194 177 0.546153846
## 197  0.4052547514 0.594745249  one Group1 214  946  194 176 0.548717949
## 90   0.4046539664 0.595346034 zero Group1 214  945  195 176 0.548717949
## 894  0.4042279422 0.595772058 zero Group1 214  944  196 176 0.548717949
## 1362 0.4036190212 0.596380979 zero Group1 214  943  197 176 0.548717949
## 681  0.4011047781 0.598895222 zero Group1 214  942  198 176 0.548717949
## 363  0.3983751833 0.601624817  one Group1 215  942  198 175 0.551282051
## 1337 0.3978706896 0.602129310  one Group1 216  942  198 174 0.553846154
## 993  0.3977352977 0.602264702 zero Group1 216  941  199 174 0.553846154
## 234  0.3949302733 0.605069727 zero Group1 216  940  200 174 0.553846154
## 803  0.3924426734 0.607557327  one Group1 217  940  200 173 0.556410256
## 115  0.3901077807 0.609892219 zero Group1 217  939  201 173 0.556410256
## 256  0.3860513270 0.613948673  one Group1 218  939  201 172 0.558974359
## 1015 0.3855628073 0.614437193 zero Group1 218  938  202 172 0.558974359
## 1271 0.3849081993 0.615091801 zero Group1 218  937  203 172 0.558974359
## 72   0.3828820884 0.617117912 zero Group1 218  936  204 172 0.558974359
## 45   0.3822848499 0.617715150  one Group1 219  936  204 171 0.561538462
## 1418 0.3820238411 0.617976159  one Group1 220  936  204 170 0.564102564
## 1412 0.3818797767 0.618120223  one Group1 221  936  204 169 0.566666667
## 521  0.3813682497 0.618631750 zero Group1 221  935  205 169 0.566666667
## 515  0.3789138198 0.621086180 zero Group1 221  934  206 169 0.566666667
## 319  0.3751962185 0.624803782 zero Group1 221  933  207 169 0.566666667
## 670  0.3727478385 0.627252162 zero Group1 221  932  208 169 0.566666667
## 1052 0.3722949028 0.627705097  one Group1 222  932  208 168 0.569230769
## 766  0.3722609878 0.627739012 zero Group1 222  931  209 168 0.569230769
## 1334 0.3700590730 0.629940927  one Group1 223  931  209 167 0.571794872
## 1265 0.3678810596 0.632118940 zero Group1 223  930  210 167 0.571794872
## 404  0.3672537208 0.632746279 zero Group1 223  929  211 167 0.571794872
## 685  0.3664065301 0.633593470  one Group1 224  929  211 166 0.574358974
## 674  0.3657121062 0.634287894 zero Group1 224  928  212 166 0.574358974
## 233  0.3622426987 0.637757301  one Group1 225  928  212 165 0.576923077
## 1130 0.3604794443 0.639520556 zero Group1 225  927  213 165 0.576923077
## 75   0.3581831753 0.641816825  one Group1 226  927  213 164 0.579487179
## 70   0.3580126762 0.641987324 zero Group1 226  926  214 164 0.579487179
## 514  0.3573011458 0.642698854 zero Group1 226  925  215 164 0.579487179
## 338  0.3567581177 0.643241882 zero Group1 226  924  216 164 0.579487179
## 322  0.3567240834 0.643275917 zero Group1 226  923  217 164 0.579487179
## 1099 0.3566927910 0.643307209  one Group1 227  923  217 163 0.582051282
## 38   0.3559319973 0.644068003 zero Group1 227  922  218 163 0.582051282
## 405  0.3542571664 0.645742834 zero Group1 227  921  219 163 0.582051282
## 426  0.3540359437 0.645964056 zero Group1 227  920  220 163 0.582051282
## 916  0.3531827331 0.646817267 zero Group1 227  919  221 163 0.582051282
## 393  0.3505932391 0.649406761 zero Group1 227  918  222 163 0.582051282
## 1397 0.3493402600 0.650659740 zero Group1 227  917  223 163 0.582051282
## 1247 0.3474264741 0.652573526 zero Group1 227  916  224 163 0.582051282
## 611  0.3464889228 0.653511077  one Group1 228  916  224 162 0.584615385
## 642  0.3443892598 0.655610740  one Group1 229  916  224 161 0.587179487
## 985  0.3435820639 0.656417936 zero Group1 229  915  225 161 0.587179487
## 369  0.3433783352 0.656621665  one Group1 230  915  225 160 0.589743590
## 845  0.3422822952 0.657717705  one Group1 231  915  225 159 0.592307692
## 203  0.3380994201 0.661900580 zero Group1 231  914  226 159 0.592307692
## 1483 0.3380113244 0.661988676 zero Group1 231  913  227 159 0.592307692
## 1490 0.3365823328 0.663417667 zero Group1 231  912  228 159 0.592307692
## 780  0.3328776360 0.667122364 zero Group1 231  911  229 159 0.592307692
## 995  0.3321251571 0.667874843 zero Group1 231  910  230 159 0.592307692
## 228  0.3318891525 0.668110847 zero Group1 231  909  231 159 0.592307692
## 125  0.3312919438 0.668708056  one Group1 232  909  231 158 0.594871795
## 1459 0.3312370479 0.668762952 zero Group1 232  908  232 158 0.594871795
## 375  0.3308994770 0.669100523 zero Group1 232  907  233 158 0.594871795
## 1336 0.3296298087 0.670370191  one Group1 233  907  233 157 0.597435897
## 518  0.3270218074 0.672978193  one Group1 234  907  233 156 0.600000000
## 1121 0.3269629478 0.673037052 zero Group1 234  906  234 156 0.600000000
## 132  0.3255797029 0.674420297 zero Group1 234  905  235 156 0.600000000
## 16   0.3252954185 0.674704581  one Group1 235  905  235 155 0.602564103
## 600  0.3252094984 0.674790502  one Group1 236  905  235 154 0.605128205
## 46   0.3248046637 0.675195336 zero Group1 236  904  236 154 0.605128205
## 1223 0.3221054375 0.677894562 zero Group1 236  903  237 154 0.605128205
## 561  0.3220953941 0.677904606  one Group1 237  903  237 153 0.607692308
## 815  0.3193194568 0.680680543  one Group1 238  903  237 152 0.610256410
## 869  0.3178973198 0.682102680 zero Group1 238  902  238 152 0.610256410
## 604  0.3167609870 0.683239013  one Group1 239  902  238 151 0.612820513
## 578  0.3160378933 0.683962107 zero Group1 239  901  239 151 0.612820513
## 973  0.3152126372 0.684787363  one Group1 240  901  239 150 0.615384615
## 1077 0.3150558472 0.684944153 zero Group1 240  900  240 150 0.615384615
## 559  0.3149126768 0.685087323  one Group1 241  900  240 149 0.617948718
## 781  0.3115471005 0.688452899 zero Group1 241  899  241 149 0.617948718
## 1045 0.3113975227 0.688602477 zero Group1 241  898  242 149 0.617948718
## 1382 0.3099702299 0.690029770 zero Group1 241  897  243 149 0.617948718
## 508  0.3092251420 0.690774858 zero Group1 241  896  244 149 0.617948718
## 866  0.3076670766 0.692332923 zero Group1 241  895  245 149 0.617948718
## 1186 0.3070236444 0.692976356 zero Group1 241  894  246 149 0.617948718
## 1372 0.3068653345 0.693134665  one Group1 242  894  246 148 0.620512821
## 224  0.3048568368 0.695143163 zero Group1 242  893  247 148 0.620512821
## 541  0.3040443957 0.695955604 zero Group1 242  892  248 148 0.620512821
## 748  0.3033933043 0.696606696 zero Group1 242  891  249 148 0.620512821
## 1366 0.3024344146 0.697565585 zero Group1 242  890  250 148 0.620512821
## 1017 0.3015127778 0.698487222 zero Group1 242  889  251 148 0.620512821
## 746  0.3005425036 0.699457496 zero Group1 242  888  252 148 0.620512821
## 391  0.2997394502 0.700260550 zero Group1 242  887  253 148 0.620512821
## 424  0.2969075739 0.703092426 zero Group1 242  886  254 148 0.620512821
## 1461 0.2963005006 0.703699499 zero Group1 242  885  255 148 0.620512821
## 79   0.2962637842 0.703736216  one Group1 243  885  255 147 0.623076923
## 528  0.2945824265 0.705417573 zero Group1 243  884  256 147 0.623076923
## 1268 0.2928643525 0.707135648 zero Group1 243  883  257 147 0.623076923
## 304  0.2922911346 0.707708865  one Group1 244  883  257 146 0.625641026
## 1375 0.2879731357 0.712026864 zero Group1 244  882  258 146 0.625641026
## 576  0.2875079811 0.712492019 zero Group1 244  881  259 146 0.625641026
## 1384 0.2865734994 0.713426501 zero Group1 244  880  260 146 0.625641026
## 1522 0.2862193584 0.713780642 zero Group1 244  879  261 146 0.625641026
## 596  0.2861039340 0.713896066 zero Group1 244  878  262 146 0.625641026
## 1075 0.2860123217 0.713987678 zero Group1 244  877  263 146 0.625641026
## 1004 0.2858353853 0.714164615 zero Group1 244  876  264 146 0.625641026
## 179  0.2837145925 0.716285408 zero Group1 244  875  265 146 0.625641026
## 1443 0.2789130509 0.721086949 zero Group1 244  874  266 146 0.625641026
## 252  0.2788265347 0.721173465 zero Group1 244  873  267 146 0.625641026
## 842  0.2785019875 0.721498013 zero Group1 244  872  268 146 0.625641026
## 276  0.2780819833 0.721918017 zero Group1 244  871  269 146 0.625641026
## 163  0.2769551873 0.723044813 zero Group1 244  870  270 146 0.625641026
## 308  0.2765319347 0.723468065 zero Group1 244  869  271 146 0.625641026
## 307  0.2761008441 0.723899156  one Group1 245  869  271 145 0.628205128
## 1508 0.2757257223 0.724274278 zero Group1 245  868  272 145 0.628205128
## 603  0.2743194401 0.725680560  one Group1 246  868  272 144 0.630769231
## 569  0.2741636634 0.725836337  one Group1 247  868  272 143 0.633333333
## 1137 0.2738599181 0.726140082 zero Group1 247  867  273 143 0.633333333
## 730  0.2735069990 0.726493001  one Group1 248  867  273 142 0.635897436
## 1221 0.2731402814 0.726859719 zero Group1 248  866  274 142 0.635897436
## 453  0.2723073959 0.727692604 zero Group1 248  865  275 142 0.635897436
## 325  0.2706108391 0.729389161 zero Group1 248  864  276 142 0.635897436
## 246  0.2690182626 0.730981737 zero Group1 248  863  277 142 0.635897436
## 517  0.2658185065 0.734181494 zero Group1 248  862  278 142 0.635897436
## 749  0.2656871974 0.734312803 zero Group1 248  861  279 142 0.635897436
## 259  0.2650356889 0.734964311  one Group1 249  861  279 141 0.638461538
## 777  0.2621783018 0.737821698 zero Group1 249  860  280 141 0.638461538
## 100  0.2603223026 0.739677697  one Group1 250  860  280 140 0.641025641
## 408  0.2594796121 0.740520388 zero Group1 250  859  281 140 0.641025641
## 61   0.2593227327 0.740677267  one Group1 251  859  281 139 0.643589744
## 971  0.2588775158 0.741122484  one Group1 252  859  281 138 0.646153846
## 171  0.2576050758 0.742394924 zero Group1 252  858  282 138 0.646153846
## 599  0.2574905455 0.742509454 zero Group1 252  857  283 138 0.646153846
## 793  0.2573523819 0.742647618 zero Group1 252  856  284 138 0.646153846
## 1239 0.2559017539 0.744098246 zero Group1 252  855  285 138 0.646153846
## 1094 0.2551716566 0.744828343  one Group1 253  855  285 137 0.648717949
## 2    0.2546941042 0.745305896 zero Group1 253  854  286 137 0.648717949
## 1095 0.2541697621 0.745830238  one Group1 254  854  286 136 0.651282051
## 39   0.2539333701 0.746066630 zero Group1 254  853  287 136 0.651282051
## 1359 0.2527860701 0.747213930 zero Group1 254  852  288 136 0.651282051
## 129  0.2527520955 0.747247905  one Group1 255  852  288 135 0.653846154
## 142  0.2511959076 0.748804092 zero Group1 255  851  289 135 0.653846154
## 401  0.2509443462 0.749055654 zero Group1 255  850  290 135 0.653846154
## 717  0.2507409155 0.749259084 zero Group1 255  849  291 135 0.653846154
## 492  0.2496844381 0.750315562 zero Group1 255  848  292 135 0.653846154
## 1031 0.2490508407 0.750949159 zero Group1 255  847  293 135 0.653846154
## 382  0.2486816198 0.751318380 zero Group1 255  846  294 135 0.653846154
## 1302 0.2483833134 0.751616687  one Group1 256  846  294 134 0.656410256
## 431  0.2481697500 0.751830250 zero Group1 256  845  295 134 0.656410256
## 723  0.2461235672 0.753876433  one Group1 257  845  295 133 0.658974359
## 444  0.2433989346 0.756601065  one Group1 258  845  295 132 0.661538462
## 1235 0.2432758063 0.756724194 zero Group1 258  844  296 132 0.661538462
## 520  0.2425039709 0.757496029  one Group1 259  844  296 131 0.664102564
## 1341 0.2423431724 0.757656828  one Group1 260  844  296 130 0.666666667
## 551  0.2416737825 0.758326218 zero Group1 260  843  297 130 0.666666667
## 452  0.2404575050 0.759542495 zero Group1 260  842  298 130 0.666666667
## 314  0.2394389659 0.760561034 zero Group1 260  841  299 130 0.666666667
## 933  0.2394338548 0.760566145  one Group1 261  841  299 129 0.669230769
## 885  0.2388764173 0.761123583  one Group1 262  841  299 128 0.671794872
## 116  0.2388372123 0.761162788 zero Group1 262  840  300 128 0.671794872
## 212  0.2380613089 0.761938691  one Group1 263  840  300 127 0.674358974
## 1391 0.2372118533 0.762788147 zero Group1 263  839  301 127 0.674358974
## 704  0.2370132953 0.762986705 zero Group1 263  838  302 127 0.674358974
## 493  0.2363339961 0.763666004 zero Group1 263  837  303 127 0.674358974
## 1029 0.2357115448 0.764288455 zero Group1 263  836  304 127 0.674358974
## 1237 0.2349200547 0.765079945 zero Group1 263  835  305 127 0.674358974
## 348  0.2336913198 0.766308680 zero Group1 263  834  306 127 0.674358974
## 1187 0.2335368693 0.766463131 zero Group1 263  833  307 127 0.674358974
## 1091 0.2329772264 0.767022774  one Group1 264  833  307 126 0.676923077
## 18   0.2329195738 0.767080426  one Group1 265  833  307 125 0.679487179
## 1275 0.2327956259 0.767204374 zero Group1 265  832  308 125 0.679487179
## 154  0.2320770323 0.767922968 zero Group1 265  831  309 125 0.679487179
## 345  0.2311915606 0.768808439 zero Group1 265  830  310 125 0.679487179
## 1037 0.2308681756 0.769131824 zero Group1 265  829  311 125 0.679487179
## 1326 0.2302665412 0.769733459 zero Group1 265  828  312 125 0.679487179
## 215  0.2294453681 0.770554632  one Group1 266  828  312 124 0.682051282
## 1135 0.2285102159 0.771489784 zero Group1 266  827  313 124 0.682051282
## 769  0.2274793833 0.772520617 zero Group1 266  826  314 124 0.682051282
## 841  0.2249253690 0.775074631 zero Group1 266  825  315 124 0.682051282
## 119  0.2248435766 0.775156423  one Group1 267  825  315 123 0.684615385
## 1084 0.2244240940 0.775575906 zero Group1 267  824  316 123 0.684615385
## 1515 0.2242374271 0.775762573 zero Group1 267  823  317 123 0.684615385
## 221  0.2205916047 0.779408395  one Group1 268  823  317 122 0.687179487
## 1212 0.2191409320 0.780859068  one Group1 269  823  317 121 0.689743590
## 40   0.2187364548 0.781263545 zero Group1 269  822  318 121 0.689743590
## 421  0.2185045183 0.781495482 zero Group1 269  821  319 121 0.689743590
## 101  0.2182157338 0.781784266 zero Group1 269  820  320 121 0.689743590
## 71   0.2176957726 0.782304227 zero Group1 269  819  321 121 0.689743590
## 832  0.2167834193 0.783216581 zero Group1 269  818  322 121 0.689743590
## 1078 0.2164845020 0.783515498 zero Group1 269  817  323 121 0.689743590
## 295  0.2164474130 0.783552587  one Group1 270  817  323 120 0.692307692
## 1288 0.2161516845 0.783848315 zero Group1 270  816  324 120 0.692307692
## 249  0.2158617377 0.784138262 zero Group1 270  815  325 120 0.692307692
## 330  0.2158340365 0.784165964 zero Group1 270  814  326 120 0.692307692
## 1155 0.2149272710 0.785072729 zero Group1 270  813  327 120 0.692307692
## 359  0.2148489952 0.785151005  one Group1 271  813  327 119 0.694871795
## 263  0.2139433175 0.786056682 zero Group1 271  812  328 119 0.694871795
## 1138 0.2135323286 0.786467671 zero Group1 271  811  329 119 0.694871795
## 1146 0.2132126987 0.786787301 zero Group1 271  810  330 119 0.694871795
## 445  0.2128196806 0.787180319  one Group1 272  810  330 118 0.697435897
## 874  0.2120423168 0.787957683 zero Group1 272  809  331 118 0.697435897
## 69   0.2110775411 0.788922459  one Group1 273  809  331 117 0.700000000
## 1176 0.2103452235 0.789654776  one Group1 274  809  331 116 0.702564103
## 456  0.2098327130 0.790167287 zero Group1 274  808  332 116 0.702564103
## 1194 0.2086513937 0.791348606 zero Group1 274  807  333 116 0.702564103
## 829  0.2073235959 0.792676404 zero Group1 274  806  334 116 0.702564103
## 287  0.2066692263 0.793330774 zero Group1 274  805  335 116 0.702564103
## 785  0.2064180076 0.793581992 zero Group1 274  804  336 116 0.702564103
## 867  0.2057503164 0.794249684 zero Group1 274  803  337 116 0.702564103
## 1049 0.2037468404 0.796253160  one Group1 275  803  337 115 0.705128205
## 253  0.2027594000 0.797240600 zero Group1 275  802  338 115 0.705128205
## 1107 0.1986409426 0.801359057 zero Group1 275  801  339 115 0.705128205
## 919  0.1985882819 0.801411718 zero Group1 275  800  340 115 0.705128205
## 1129 0.1969861686 0.803013831  one Group1 276  800  340 114 0.707692308
## 237  0.1969277859 0.803072214 zero Group1 276  799  341 114 0.707692308
## 122  0.1966148466 0.803385153 zero Group1 276  798  342 114 0.707692308
## 1347 0.1961712092 0.803828791 zero Group1 276  797  343 114 0.707692308
## 342  0.1960979849 0.803902015 zero Group1 276  796  344 114 0.707692308
## 198  0.1955960095 0.804403991 zero Group1 276  795  345 114 0.707692308
## 270  0.1952987164 0.804701284 zero Group1 276  794  346 114 0.707692308
## 739  0.1936147958 0.806385204 zero Group1 276  793  347 114 0.707692308
## 390  0.1931612194 0.806838781 zero Group1 276  792  348 114 0.707692308
## 1136 0.1920009255 0.807999074 zero Group1 276  791  349 114 0.707692308
## 296  0.1916512400 0.808348760  one Group1 277  791  349 113 0.710256410
## 1402 0.1916164309 0.808383569 zero Group1 277  790  350 113 0.710256410
## 264  0.1907147467 0.809285253 zero Group1 277  789  351 113 0.710256410
## 902  0.1903218031 0.809678197 zero Group1 277  788  352 113 0.710256410
## 63   0.1902430654 0.809756935 zero Group1 277  787  353 113 0.710256410
## 1074 0.1901452541 0.809854746 zero Group1 277  786  354 113 0.710256410
## 1478 0.1899373829 0.810062617 zero Group1 277  785  355 113 0.710256410
## 1425 0.1886992007 0.811300799 zero Group1 277  784  356 113 0.710256410
## 1259 0.1875356734 0.812464327 zero Group1 277  783  357 113 0.710256410
## 1352 0.1865244359 0.813475564 zero Group1 277  782  358 113 0.710256410
## 326  0.1864006668 0.813599333 zero Group1 277  781  359 113 0.710256410
## 13   0.1861020476 0.813897952  one Group1 278  781  359 112 0.712820513
## 498  0.1850184202 0.814981580 zero Group1 278  780  360 112 0.712820513
## 1464 0.1840425581 0.815957442 zero Group1 278  779  361 112 0.712820513
## 893  0.1834737808 0.816526219 zero Group1 278  778  362 112 0.712820513
## 1470 0.1834544986 0.816545501 zero Group1 278  777  363 112 0.712820513
## 621  0.1833659112 0.816634089 zero Group1 278  776  364 112 0.712820513
## 708  0.1823676825 0.817632318 zero Group1 278  775  365 112 0.712820513
## 891  0.1814033687 0.818596631 zero Group1 278  774  366 112 0.712820513
## 1256 0.1806849986 0.819315001 zero Group1 278  773  367 112 0.712820513
## 980  0.1801150292 0.819884971 zero Group1 278  772  368 112 0.712820513
## 299  0.1798958778 0.820104122  one Group1 279  772  368 111 0.715384615
## 1439 0.1798813492 0.820118651 zero Group1 279  771  369 111 0.715384615
## 400  0.1794370413 0.820562959 zero Group1 279  770  370 111 0.715384615
## 138  0.1774108261 0.822589174 zero Group1 279  769  371 111 0.715384615
## 855  0.1769592464 0.823040754  one Group1 280  769  371 110 0.717948718
## 963  0.1766869873 0.823313013 zero Group1 280  768  372 110 0.717948718
## 888  0.1758016497 0.824198350 zero Group1 280  767  373 110 0.717948718
## 930  0.1750807464 0.824919254  one Group1 281  767  373 109 0.720512821
## 612  0.1735782474 0.826421753  one Group1 282  767  373 108 0.723076923
## 751  0.1733440012 0.826655999 zero Group1 282  766  374 108 0.723076923
## 139  0.1732070595 0.826792940 zero Group1 282  765  375 108 0.723076923
## 209  0.1729629487 0.827037051 zero Group1 282  764  376 108 0.723076923
## 1430 0.1728414595 0.827158540 zero Group1 282  763  377 108 0.723076923
## 1296 0.1724153459 0.827584654  one Group1 283  763  377 107 0.725641026
## 742  0.1703423560 0.829657644 zero Group1 283  762  378 107 0.725641026
## 277  0.1697636694 0.830236331 zero Group1 283  761  379 107 0.725641026
## 1254 0.1688536108 0.831146389 zero Group1 283  760  380 107 0.725641026
## 889  0.1675953418 0.832404658 zero Group1 283  759  381 107 0.725641026
## 771  0.1659613401 0.834038660 zero Group1 283  758  382 107 0.725641026
## 609  0.1659045070 0.834095493  one Group1 284  758  382 106 0.728205128
## 1222 0.1657255143 0.834274486 zero Group1 284  757  383 106 0.728205128
## 830  0.1643224508 0.835677549 zero Group1 284  756  384 106 0.728205128
## 449  0.1640944183 0.835905582  one Group1 285  756  384 105 0.730769231
## 440  0.1627901793 0.837209821  one Group1 286  756  384 104 0.733333333
## 395  0.1623387039 0.837661296 zero Group1 286  755  385 104 0.733333333
## 1169 0.1610089093 0.838991091  one Group1 287  755  385 103 0.735897436
## 407  0.1602690667 0.839730933 zero Group1 287  754  386 103 0.735897436
## 1009 0.1596926004 0.840307400 zero Group1 287  753  387 103 0.735897436
## 1526 0.1583554745 0.841644526 zero Group1 287  752  388 103 0.735897436
## 1206 0.1571279019 0.842872098 zero Group1 287  751  389 103 0.735897436
## 1033 0.1562036872 0.843796313 zero Group1 287  750  390 103 0.735897436
## 373  0.1556893885 0.844310611 zero Group1 287  749  391 103 0.735897436
## 643  0.1556064934 0.844393507  one Group1 288  749  391 102 0.738461538
## 913  0.1550521106 0.844947889 zero Group1 288  748  392 102 0.738461538
## 239  0.1541380584 0.845861942 zero Group1 288  747  393 102 0.738461538
## 1503 0.1533063948 0.846693605  one Group1 289  747  393 101 0.741025641
## 490  0.1521136612 0.847886339 zero Group1 289  746  394 101 0.741025641
## 954  0.1512825936 0.848717406 zero Group1 289  745  395 101 0.741025641
## 1306 0.1510252506 0.848974749 zero Group1 289  744  396 101 0.741025641
## 1284 0.1507882923 0.849211708 zero Group1 289  743  397 101 0.741025641
## 1112 0.1506348550 0.849365145 zero Group1 289  742  398 101 0.741025641
## 854  0.1504457742 0.849554226  one Group1 290  742  398 100 0.743589744
## 1119 0.1499279439 0.850072056 zero Group1 290  741  399 100 0.743589744
## 1027 0.1494117677 0.850588232 zero Group1 290  740  400 100 0.743589744
## 1360 0.1492847651 0.850715235 zero Group1 290  739  401 100 0.743589744
## 821  0.1483833045 0.851616696 zero Group1 290  738  402 100 0.743589744
## 1279 0.1481720805 0.851827919 zero Group1 290  737  403 100 0.743589744
## 667  0.1473816186 0.852618381 zero Group1 290  736  404 100 0.743589744
## 822  0.1468786001 0.853121400 zero Group1 290  735  405 100 0.743589744
## 581  0.1466417015 0.853358299 zero Group1 290  734  406 100 0.743589744
## 1450 0.1464629918 0.853537008 zero Group1 290  733  407 100 0.743589744
## 852  0.1461201012 0.853879899  one Group1 291  733  407  99 0.746153846
## 1383 0.1458219141 0.854178086 zero Group1 291  732  408  99 0.746153846
## 881  0.1458171010 0.854182899 zero Group1 291  731  409  99 0.746153846
## 1225 0.1448720098 0.855127990 zero Group1 291  730  410  99 0.746153846
## 1040 0.1442314386 0.855768561 zero Group1 291  729  411  99 0.746153846
## 1331 0.1440378278 0.855962172  one Group1 292  729  411  98 0.748717949
## 280  0.1418141425 0.858185858 zero Group1 292  728  412  98 0.748717949
## 406  0.1417309791 0.858269021 zero Group1 292  727  413  98 0.748717949
## 991  0.1409188658 0.859081134 zero Group1 292  726  414  98 0.748717949
## 328  0.1404328495 0.859567150 zero Group1 292  725  415  98 0.748717949
## 1253 0.1398898661 0.860110134 zero Group1 292  724  416  98 0.748717949
## 300  0.1391999125 0.860800087  one Group1 293  724  416  97 0.751282051
## 1211 0.1386398077 0.861360192  one Group1 294  724  416  96 0.753846154
## 550  0.1383642703 0.861635730 zero Group1 294  723  417  96 0.753846154
## 339  0.1383533627 0.861646637 zero Group1 294  722  418  96 0.753846154
## 12   0.1374807805 0.862519220 zero Group1 294  721  419  96 0.753846154
## 1038 0.1365956813 0.863404319 zero Group1 294  720  420  96 0.753846154
## 714  0.1364110410 0.863588959 zero Group1 294  719  421  96 0.753846154
## 1047 0.1360759735 0.863924026  one Group1 295  719  421  95 0.756410256
## 1250 0.1350129396 0.864987060  one Group1 296  719  421  94 0.758974359
## 1333 0.1343443990 0.865655601  one Group1 297  719  421  93 0.761538462
## 1026 0.1342198849 0.865780115 zero Group1 297  718  422  93 0.761538462
## 1232 0.1339806467 0.866019353 zero Group1 297  717  423  93 0.761538462
## 860  0.1328744143 0.867125586 zero Group1 297  716  424  93 0.761538462
## 290  0.1323802471 0.867619753  one Group1 298  716  424  92 0.764102564
## 545  0.1321732700 0.867826730 zero Group1 298  715  425  92 0.764102564
## 1356 0.1314802915 0.868519709 zero Group1 298  714  426  92 0.764102564
## 344  0.1309896260 0.869010374 zero Group1 298  713  427  92 0.764102564
## 178  0.1306867003 0.869313300  one Group1 299  713  427  91 0.766666667
## 204  0.1301446110 0.869855389 zero Group1 299  712  428  91 0.766666667
## 907  0.1297874898 0.870212510 zero Group1 299  711  429  91 0.766666667
## 1455 0.1295939833 0.870406017 zero Group1 299  710  430  91 0.766666667
## 1005 0.1289816648 0.871018335  one Group1 300  710  430  90 0.769230769
## 192  0.1289288849 0.871071115 zero Group1 300  709  431  90 0.769230769
## 903  0.1282596141 0.871740386 zero Group1 300  708  432  90 0.769230769
## 1240 0.1278720945 0.872127905 zero Group1 300  707  433  90 0.769230769
## 538  0.1275387406 0.872461259 zero Group1 300  706  434  90 0.769230769
## 998  0.1269673705 0.873032629 zero Group1 300  705  435  90 0.769230769
## 846  0.1269665360 0.873033464  one Group1 301  705  435  89 0.771794872
## 1190 0.1269388646 0.873061135 zero Group1 301  704  436  89 0.771794872
## 696  0.1267370582 0.873262942 zero Group1 301  703  437  89 0.771794872
## 1172 0.1267026216 0.873297378  one Group1 302  703  437  88 0.774358974
## 255  0.1255598962 0.874440104 zero Group1 302  702  438  88 0.774358974
## 294  0.1249775365 0.875022464 zero Group1 302  701  439  88 0.774358974
## 340  0.1249276847 0.875072315 zero Group1 302  700  440  88 0.774358974
## 54   0.1238193735 0.876180626 zero Group1 302  699  441  88 0.774358974
## 1092 0.1238144785 0.876185521  one Group1 303  699  441  87 0.776923077
## 526  0.1237873286 0.876212671 zero Group1 303  698  442  87 0.776923077
## 1323 0.1232356578 0.876764342 zero Group1 303  697  443  87 0.776923077
## 1355 0.1230145767 0.876985423 zero Group1 303  696  444  87 0.776923077
## 124  0.1225246638 0.877475336  one Group1 304  696  444  86 0.779487179
## 386  0.1222402602 0.877759740 zero Group1 304  695  445  86 0.779487179
## 313  0.1220705509 0.877929449 zero Group1 304  694  446  86 0.779487179
## 1183 0.1217979789 0.878202021 zero Group1 304  693  447  86 0.779487179
## 1316 0.1213480160 0.878651984 zero Group1 304  692  448  86 0.779487179
## 951  0.1210848019 0.878915198 zero Group1 304  691  449  86 0.779487179
## 83   0.1203836501 0.879616350 zero Group1 304  690  450  86 0.779487179
## 1346 0.1201451272 0.879854873 zero Group1 304  689  451  86 0.779487179
## 162  0.1197928712 0.880207129  one Group1 305  689  451  85 0.782051282
## 695  0.1195870265 0.880412973 zero Group1 305  688  452  85 0.782051282
## 343  0.1182534695 0.881746531 zero Group1 305  687  453  85 0.782051282
## 770  0.1172164604 0.882783540 zero Group1 305  686  454  85 0.782051282
## 825  0.1172111481 0.882788852 zero Group1 305  685  455  85 0.782051282
## 588  0.1168838367 0.883116163 zero Group1 305  684  456  85 0.782051282
## 756  0.1165667698 0.883433230 zero Group1 305  683  457  85 0.782051282
## 102  0.1161998659 0.883800134 zero Group1 305  682  458  85 0.782051282
## 415  0.1161752120 0.883824788 zero Group1 305  681  459  85 0.782051282
## 928  0.1157778576 0.884222142  one Group1 306  681  459  84 0.784615385
## 557  0.1153636426 0.884636357 zero Group1 306  680  460  84 0.784615385
## 60   0.1149276271 0.885072373 zero Group1 306  679  461  84 0.784615385
## 900  0.1146785840 0.885321416 zero Group1 306  678  462  84 0.784615385
## 977  0.1142096072 0.885790393  one Group1 307  678  462  83 0.787179487
## 610  0.1138493791 0.886150621  one Group1 308  678  462  82 0.789743590
## 635  0.1134790853 0.886520915 zero Group1 308  677  463  82 0.789743590
## 1520 0.1130633280 0.886936672 zero Group1 308  676  464  82 0.789743590
## 864  0.1130397543 0.886960246 zero Group1 308  675  465  82 0.789743590
## 826  0.1129976362 0.887002364 zero Group1 308  674  466  82 0.789743590
## 1502 0.1118732393 0.888126761  one Group1 309  674  466  81 0.792307692
## 627  0.1112655401 0.888734460 zero Group1 309  673  467  81 0.792307692
## 59   0.1111790612 0.888820939 zero Group1 309  672  468  81 0.792307692
## 248  0.1110377610 0.888962239 zero Group1 309  671  469  81 0.792307692
## 547  0.1108602509 0.889139749 zero Group1 309  670  470  81 0.792307692
## 1273 0.1108057648 0.889194235 zero Group1 309  669  471  81 0.792307692
## 195  0.1104773656 0.889522634 zero Group1 309  668  472  81 0.792307692
## 595  0.1102871373 0.889712863 zero Group1 309  667  473  81 0.792307692
## 334  0.1095373183 0.890462682 zero Group1 309  666  474  81 0.792307692
## 43   0.1093477011 0.890652299 zero Group1 309  665  475  81 0.792307692
## 1305 0.1077729240 0.892227076 zero Group1 309  664  476  81 0.792307692
## 5    0.1068688482 0.893131152 zero Group1 309  663  477  81 0.792307692
## 435  0.1068042666 0.893195733 zero Group1 309  662  478  81 0.792307692
## 1145 0.1067270488 0.893272951 zero Group1 309  661  479  81 0.792307692
## 25   0.1065205336 0.893479466  one Group1 310  661  479  80 0.794871795
## 1106 0.1064797640 0.893520236 zero Group1 310  660  480  80 0.794871795
## 1518 0.1064309478 0.893569052 zero Group1 310  659  481  80 0.794871795
## 235  0.1064017415 0.893598258 zero Group1 310  658  482  80 0.794871795
## 837  0.1063625365 0.893637463 zero Group1 310  657  483  80 0.794871795
## 1097 0.1063618734 0.893638127  one Group1 311  657  483  79 0.797435897
## 999  0.1062251851 0.893774815 zero Group1 311  656  484  79 0.797435897
## 536  0.1054396033 0.894560397 zero Group1 311  655  485  79 0.797435897
## 214  0.1052735969 0.894726403 zero Group1 311  654  486  79 0.797435897
## 1151 0.1051455736 0.894854426 zero Group1 311  653  487  79 0.797435897
## 728  0.1048320606 0.895167939  one Group1 312  653  487  78 0.800000000
## 568  0.1046316549 0.895368345  one Group1 313  653  487  77 0.802564103
## 707  0.1039644033 0.896035597 zero Group1 313  652  488  77 0.802564103
## 1262 0.1038662493 0.896133751 zero Group1 313  651  489  77 0.802564103
## 1514 0.1037781835 0.896221817 zero Group1 313  650  490  77 0.802564103
## 565  0.1035179868 0.896482013  one Group1 314  650  490  76 0.805128205
## 613  0.1032264680 0.896773532 zero Group1 314  649  491  76 0.805128205
## 30   0.1026039049 0.897396095 zero Group1 314  648  492  76 0.805128205
## 141  0.1025812328 0.897418767 zero Group1 314  647  493  76 0.805128205
## 1158 0.1021336019 0.897866398 zero Group1 314  646  494  76 0.805128205
## 205  0.1018701270 0.898129873 zero Group1 314  645  495  76 0.805128205
## 1066 0.1010490507 0.898950949 zero Group1 314  644  496  76 0.805128205
## 1501 0.1007937565 0.899206243  one Group1 315  644  496  75 0.807692308
## 1016 0.1007069796 0.899293020 zero Group1 315  643  497  75 0.807692308
## 1035 0.1003068089 0.899693191 zero Group1 315  642  498  75 0.807692308
## 817  0.0994324833 0.900567517 zero Group1 315  641  499  75 0.807692308
## 1241 0.0993523821 0.900647618 zero Group1 315  640  500  75 0.807692308
## 219  0.0992713720 0.900728628  one Group1 316  640  500  74 0.810256410
## 584  0.0992125645 0.900787435 zero Group1 316  639  501  74 0.810256410
## 760  0.0983957723 0.901604228 zero Group1 316  638  502  74 0.810256410
## 997  0.0981651321 0.901834868 zero Group1 316  637  503  74 0.810256410
## 835  0.0974350125 0.902564988 zero Group1 316  636  504  74 0.810256410
## 1285 0.0971614420 0.902838558 zero Group1 316  635  505  74 0.810256410
## 419  0.0969253480 0.903074652 zero Group1 316  634  506  74 0.810256410
## 858  0.0965386853 0.903461315 zero Group1 316  633  507  74 0.810256410
## 1200 0.0965115950 0.903488405 zero Group1 316  632  508  74 0.810256410
## 644  0.0954712853 0.904528715 zero Group1 316  631  509  74 0.810256410
## 385  0.0948073789 0.905192621 zero Group1 316  630  510  74 0.810256410
## 379  0.0947495401 0.905250460 zero Group1 316  629  511  74 0.810256410
## 1340 0.0946394950 0.905360505  one Group1 317  629  511  73 0.812820513
## 470  0.0940064639 0.905993536 zero Group1 317  628  512  73 0.812820513
## 242  0.0939636827 0.906036317  one Group1 318  628  512  72 0.815384615
## 1185 0.0938713327 0.906128667 zero Group1 318  627  513  72 0.815384615
## 1398 0.0928341746 0.907165825 zero Group1 318  626  514  72 0.815384615
## 403  0.0919906124 0.908009388 zero Group1 318  625  515  72 0.815384615
## 637  0.0912801996 0.908719800 zero Group1 318  624  516  72 0.815384615
## 1105 0.0908319578 0.909168042 zero Group1 318  623  517  72 0.815384615
## 23   0.0901800022 0.909819998 zero Group1 318  622  518  72 0.815384615
## 1436 0.0900732428 0.909926757 zero Group1 318  621  519  72 0.815384615
## 1504 0.0899375975 0.910062402 zero Group1 318  620  520  72 0.815384615
## 272  0.0896096751 0.910390325 zero Group1 318  619  521  72 0.815384615
## 1264 0.0895522386 0.910447761 zero Group1 318  618  522  72 0.815384615
## 484  0.0891611353 0.910838865  one Group1 319  618  522  71 0.817948718
## 895  0.0891418159 0.910858184 zero Group1 319  617  523  71 0.817948718
## 437  0.0886980221 0.911301978 zero Group1 319  616  524  71 0.817948718
## 67   0.0884407908 0.911559209 zero Group1 319  615  525  71 0.817948718
## 776  0.0881793648 0.911820635 zero Group1 319  614  526  71 0.817948718
## 58   0.0877082944 0.912291706  one Group1 320  614  526  70 0.820512821
## 1167 0.0873242170 0.912675783 zero Group1 320  613  527  70 0.820512821
## 1104 0.0869556889 0.913044311 zero Group1 320  612  528  70 0.820512821
## 489  0.0869168639 0.913083136  one Group1 321  612  528  69 0.823076923
## 763  0.0867679790 0.913232021  one Group1 322  612  528  68 0.825641026
## 583  0.0864633545 0.913536645 zero Group1 322  611  529  68 0.825641026
## 831  0.0861496925 0.913850307 zero Group1 322  610  530  68 0.825641026
## 1400 0.0859843940 0.914015606 zero Group1 322  609  531  68 0.825641026
## 970  0.0858833790 0.914116621  one Group1 323  609  531  67 0.828205128
## 110  0.0852623507 0.914737649 zero Group1 323  608  532  67 0.828205128
## 1440 0.0846542493 0.915345751 zero Group1 323  607  533  67 0.828205128
## 207  0.0845501125 0.915449888 zero Group1 323  606  534  67 0.828205128
## 1248 0.0845260322 0.915473968 zero Group1 323  605  535  67 0.828205128
## 358  0.0844706744 0.915529326  one Group1 324  605  535  66 0.830769231
## 870  0.0844365805 0.915563419 zero Group1 324  604  536  66 0.830769231
## 1270 0.0839060172 0.916093983 zero Group1 324  603  537  66 0.830769231
## 592  0.0833410695 0.916658930 zero Group1 324  602  538  66 0.830769231
## 579  0.0833329484 0.916667052 zero Group1 324  601  539  66 0.830769231
## 495  0.0831289962 0.916871004 zero Group1 324  600  540  66 0.830769231
## 1034 0.0830353126 0.916964687 zero Group1 324  599  541  66 0.830769231
## 794  0.0829809234 0.917019077 zero Group1 324  598  542  66 0.830769231
## 648  0.0828498974 0.917150103 zero Group1 324  597  543  66 0.830769231
## 692  0.0828144178 0.917185582  one Group1 325  597  543  65 0.833333333
## 1427 0.0824211389 0.917578861 zero Group1 325  596  544  65 0.833333333
## 533  0.0822911710 0.917708829 zero Group1 325  595  545  65 0.833333333
## 1386 0.0820976049 0.917902395 zero Group1 325  594  546  65 0.833333333
## 1272 0.0817222595 0.918277740 zero Group1 325  593  547  65 0.833333333
## 20   0.0814067721 0.918593228 zero Group1 325  592  548  65 0.833333333
## 367  0.0812964439 0.918703556  one Group1 326  592  548  64 0.835897436
## 789  0.0809481665 0.919051833 zero Group1 326  591  549  64 0.835897436
## 1122 0.0807422996 0.919257700 zero Group1 326  590  550  64 0.835897436
## 1192 0.0802492872 0.919750713 zero Group1 326  589  551  64 0.835897436
## 529  0.0795453638 0.920454636 zero Group1 326  588  552  64 0.835897436
## 649  0.0794929639 0.920507036 zero Group1 326  587  553  64 0.835897436
## 176  0.0789963901 0.921003610  one Group1 327  587  553  63 0.838461538
## 1205 0.0788730532 0.921126947 zero Group1 327  586  554  63 0.838461538
## 1197 0.0788549036 0.921145096 zero Group1 327  585  555  63 0.838461538
## 65   0.0785882398 0.921411760 zero Group1 327  584  556  63 0.838461538
## 389  0.0783591196 0.921640880 zero Group1 327  583  557  63 0.838461538
## 940  0.0780744776 0.921925522 zero Group1 327  582  558  63 0.838461538
## 1415 0.0777691305 0.922230870  one Group1 328  582  558  62 0.841025641
## 1064 0.0776856169 0.922314383 zero Group1 328  581  559  62 0.841025641
## 448  0.0776583031 0.922341697  one Group1 329  581  559  61 0.843589744
## 396  0.0775090978 0.922490902 zero Group1 329  580  560  61 0.843589744
## 1063 0.0761818662 0.923818134 zero Group1 329  579  561  61 0.843589744
## 6    0.0754522309 0.924547769 zero Group1 329  578  562  61 0.843589744
## 1132 0.0753965080 0.924603492 zero Group1 329  577  563  61 0.843589744
## 187  0.0753489062 0.924651094 zero Group1 329  576  564  61 0.843589744
## 1100 0.0753169060 0.924683094 zero Group1 329  575  565  61 0.843589744
## 150  0.0751752108 0.924824789 zero Group1 329  574  566  61 0.843589744
## 1117 0.0751478001 0.924852200 zero Group1 329  573  567  61 0.843589744
## 558  0.0747763440 0.925223656 zero Group1 329  572  568  61 0.843589744
## 1102 0.0738105774 0.926189423 zero Group1 329  571  569  61 0.843589744
## 354  0.0736533925 0.926346608 zero Group1 329  570  570  61 0.843589744
## 752  0.0735591650 0.926440835 zero Group1 329  569  571  61 0.843589744
## 1162 0.0732275248 0.926772475 zero Group1 329  568  572  61 0.843589744
## 399  0.0731047317 0.926895268  one Group1 330  568  572  60 0.846153846
## 1445 0.0727964565 0.927203543 zero Group1 330  567  573  60 0.846153846
## 372  0.0727729127 0.927227087 zero Group1 330  566  574  60 0.846153846
## 736  0.0726839229 0.927316077 zero Group1 330  565  575  60 0.846153846
## 589  0.0726324320 0.927367568 zero Group1 330  564  576  60 0.846153846
## 1378 0.0725808889 0.927419111 zero Group1 330  563  577  60 0.846153846
## 750  0.0715137124 0.928486288 zero Group1 330  562  578  60 0.846153846
## 1374 0.0714884177 0.928511582 zero Group1 330  561  579  60 0.846153846
## 843  0.0713055506 0.928694449  one Group1 331  561  579  59 0.848717949
## 942  0.0710438490 0.928956151 zero Group1 331  560  580  59 0.848717949
## 182  0.0709431916 0.929056808  one Group1 332  560  580  58 0.851282051
## 355  0.0708533749 0.929146625 zero Group1 332  559  581  58 0.851282051
## 1358 0.0706203803 0.929379620 zero Group1 332  558  582  58 0.851282051
## 540  0.0702354088 0.929764591 zero Group1 332  557  583  58 0.851282051
## 1054 0.0702096745 0.929790325  one Group1 333  557  583  57 0.853846154
## 989  0.0700333714 0.929966629 zero Group1 333  556  584  57 0.853846154
## 652  0.0699985921 0.930001408 zero Group1 333  555  585  57 0.853846154
## 1364 0.0697959810 0.930204019 zero Group1 333  554  586  57 0.853846154
## 1421 0.0695256442 0.930474356  one Group1 334  554  586  56 0.856410256
## 289  0.0694821104 0.930517890 zero Group1 334  553  587  56 0.856410256
## 165  0.0694595501 0.930540450 zero Group1 334  552  588  56 0.856410256
## 757  0.0691640601 0.930835940 zero Group1 334  551  589  56 0.856410256
## 1115 0.0691221133 0.930877887 zero Group1 334  550  590  56 0.856410256
## 1220 0.0687788799 0.931221120  one Group1 335  550  590  55 0.858974359
## 394  0.0683616176 0.931638382 zero Group1 335  549  591  55 0.858974359
## 497  0.0680904761 0.931909524 zero Group1 335  548  592  55 0.858974359
## 523  0.0677284375 0.932271563 zero Group1 335  547  593  55 0.858974359
## 293  0.0677063242 0.932293676 zero Group1 335  546  594  55 0.858974359
## 1291 0.0674476475 0.932552353  one Group1 336  546  594  54 0.861538462
## 1419 0.0674149618 0.932585038  one Group1 337  546  594  53 0.864102564
## 632  0.0672979653 0.932702035 zero Group1 337  545  595  53 0.864102564
## 1351 0.0667959899 0.933204010 zero Group1 337  544  596  53 0.864102564
## 527  0.0666444153 0.933355585 zero Group1 337  543  597  53 0.864102564
## 575  0.0664564148 0.933543585 zero Group1 337  542  598  53 0.864102564
## 1153 0.0662522465 0.933747754 zero Group1 337  541  599  53 0.864102564
## 1437 0.0652927607 0.934707239 zero Group1 337  540  600  53 0.864102564
## 934  0.0650305748 0.934969425  one Group1 338  540  600  52 0.866666667
## 678  0.0648607835 0.935139216 zero Group1 338  539  601  52 0.866666667
## 1109 0.0645952970 0.935404703 zero Group1 338  538  602  52 0.866666667
## 582  0.0641018227 0.935898177 zero Group1 338  537  603  52 0.866666667
## 877  0.0640893131 0.935910687 zero Group1 338  536  604  52 0.866666667
## 167  0.0638886392 0.936111361  one Group1 339  536  604  51 0.869230769
## 772  0.0632661581 0.936733842 zero Group1 339  535  605  51 0.869230769
## 257  0.0631583408 0.936841659 zero Group1 339  534  606  51 0.869230769
## 331  0.0631391183 0.936860882 zero Group1 339  533  607  51 0.869230769
## 976  0.0630464926 0.936953507  one Group1 340  533  607  50 0.871794872
## 1428 0.0629602298 0.937039770 zero Group1 340  532  608  50 0.871794872
## 461  0.0629246905 0.937075309 zero Group1 340  531  609  50 0.871794872
## 1147 0.0629151911 0.937084809 zero Group1 340  530  610  50 0.871794872
## 240  0.0628501251 0.937149875 zero Group1 340  529  611  50 0.871794872
## 1046 0.0624972731 0.937502727 zero Group1 340  528  612  50 0.871794872
## 103  0.0624744929 0.937525507 zero Group1 340  527  613  50 0.871794872
## 185  0.0624087006 0.937591299 zero Group1 340  526  614  50 0.871794872
## 1314 0.0622776337 0.937722366 zero Group1 340  525  615  50 0.871794872
## 1286 0.0622718334 0.937728167 zero Group1 340  524  616  50 0.871794872
## 950  0.0621752478 0.937824752 zero Group1 340  523  617  50 0.871794872
## 828  0.0615723915 0.938427608 zero Group1 340  522  618  50 0.871794872
## 1313 0.0611649379 0.938835062 zero Group1 340  521  619  50 0.871794872
## 271  0.0610698685 0.938930131 zero Group1 340  520  620  50 0.871794872
## 838  0.0608301051 0.939169895 zero Group1 340  519  621  50 0.871794872
## 131  0.0607981086 0.939201891 zero Group1 340  518  622  50 0.871794872
## 1480 0.0607440248 0.939255975 zero Group1 340  517  623  50 0.871794872
## 733  0.0606456846 0.939354315  one Group1 341  517  623  49 0.874358974
## 1462 0.0600353181 0.939964682 zero Group1 341  516  624  49 0.874358974
## 1070 0.0596858077 0.940314192 zero Group1 341  515  625  49 0.874358974
## 462  0.0596757233 0.940324277 zero Group1 341  514  626  49 0.874358974
## 1148 0.0596721396 0.940327860 zero Group1 341  513  627  49 0.874358974
## 460  0.0587313697 0.941268630 zero Group1 341  512  628  49 0.874358974
## 666  0.0586688071 0.941331193 zero Group1 341  511  629  49 0.874358974
## 169  0.0585808903 0.941419110 zero Group1 341  510  630  49 0.874358974
## 1182 0.0585741028 0.941425897 zero Group1 341  509  631  49 0.874358974
## 979  0.0585480221 0.941451978 zero Group1 341  508  632  49 0.874358974
## 1261 0.0585041977 0.941495802 zero Group1 341  507  633  49 0.874358974
## 161  0.0582771301 0.941722870 zero Group1 341  506  634  49 0.874358974
## 1267 0.0582375675 0.941762432 zero Group1 341  505  635  49 0.874358974
## 1388 0.0578865446 0.942113455 zero Group1 341  504  636  49 0.874358974
## 336  0.0572185218 0.942781478 zero Group1 341  503  637  49 0.874358974
## 722  0.0570767485 0.942923252  one Group1 342  503  637  48 0.876923077
## 1028 0.0561092570 0.943890743 zero Group1 342  502  638  48 0.876923077
## 8    0.0559112951 0.944088705 zero Group1 342  501  639  48 0.876923077
## 1124 0.0557195693 0.944280431 zero Group1 342  500  640  48 0.876923077
## 1062 0.0556889474 0.944311053 zero Group1 342  499  641  48 0.876923077
## 876  0.0554009676 0.944599032 zero Group1 342  498  642  48 0.876923077
## 738  0.0552733243 0.944726676 zero Group1 342  497  643  48 0.876923077
## 1404 0.0552232750 0.944776725 zero Group1 342  496  644  48 0.876923077
## 62   0.0551984310 0.944801569 zero Group1 342  495  645  48 0.876923077
## 543  0.0548570231 0.945142977 zero Group1 342  494  646  48 0.876923077
## 1139 0.0548482090 0.945151791 zero Group1 342  493  647  48 0.876923077
## 816  0.0544100702 0.945589930 zero Group1 342  492  648  48 0.876923077
## 743  0.0544035621 0.945596438 zero Group1 342  491  649  48 0.876923077
## 1422 0.0542450659 0.945754934  one Group1 343  491  649  47 0.879487179
## 923  0.0541950502 0.945804950 zero Group1 343  490  650  47 0.879487179
## 475  0.0539000556 0.946099944 zero Group1 343  489  651  47 0.879487179
## 745  0.0537204444 0.946279556 zero Group1 343  488  652  47 0.879487179
## 863  0.0536150485 0.946384951 zero Group1 343  487  653  47 0.879487179
## 1339 0.0535368957 0.946463104  one Group1 344  487  653  46 0.882051282
## 1530 0.0534101762 0.946589824 zero Group1 344  486  654  46 0.882051282
## 1036 0.0533952415 0.946604759 zero Group1 344  485  655  46 0.882051282
## 327  0.0533376969 0.946662303 zero Group1 344  484  656  46 0.882051282
## 682  0.0532436445 0.946756355  one Group1 345  484  656  45 0.884615385
## 14   0.0530843101 0.946915690 zero Group1 345  483  657  45 0.884615385
## 411  0.0530738160 0.946926184 zero Group1 345  482  658  45 0.884615385
## 1289 0.0529889129 0.947011087 zero Group1 345  481  659  45 0.884615385
## 136  0.0526051223 0.947394878 zero Group1 345  480  660  45 0.884615385
## 1018 0.0525570661 0.947442934 zero Group1 345  479  661  45 0.884615385
## 480  0.0524854250 0.947514575  one Group1 346  479  661  44 0.887179487
## 795  0.0524532013 0.947546799 zero Group1 346  478  662  44 0.887179487
## 1179 0.0523867607 0.947613239  one Group1 347  478  662  43 0.889743590
## 623  0.0523345917 0.947665408 zero Group1 347  477  663  43 0.889743590
## 1510 0.0514920317 0.948507968 zero Group1 347  476  664  43 0.889743590
## 834  0.0513575524 0.948642448 zero Group1 347  475  665  43 0.889743590
## 155  0.0512155481 0.948784452 zero Group1 347  474  666  43 0.889743590
## 321  0.0509365909 0.949063409 zero Group1 347  473  667  43 0.889743590
## 434  0.0507278740 0.949272126 zero Group1 347  472  668  43 0.889743590
## 318  0.0505961068 0.949403893 zero Group1 347  471  669  43 0.889743590
## 283  0.0503687859 0.949631214 zero Group1 347  470  670  43 0.889743590
## 813  0.0503410622 0.949658938  one Group1 348  470  670  42 0.892307692
## 88   0.0502573512 0.949742649 zero Group1 348  469  671  42 0.892307692
## 792  0.0501003228 0.949899677 zero Group1 348  468  672  42 0.892307692
## 50   0.0497492328 0.950250767 zero Group1 348  467  673  42 0.892307692
## 1295 0.0495966300 0.950403370  one Group1 349  467  673  41 0.894871795
## 1208 0.0492095165 0.950790484  one Group1 350  467  673  40 0.897435897
## 479  0.0491540842 0.950845916  one Group1 351  467  673  39 0.900000000
## 1184 0.0489077270 0.951092273 zero Group1 351  466  674  39 0.900000000
## 193  0.0488289036 0.951171096 zero Group1 351  465  675  39 0.900000000
## 144  0.0486398675 0.951360133  one Group1 352  465  675  38 0.902564103
## 42   0.0483481027 0.951651897 zero Group1 352  464  676  38 0.902564103
## 1392 0.0482178405 0.951782160 zero Group1 352  463  677  38 0.902564103
## 665  0.0480819829 0.951918017 zero Group1 352  462  678  38 0.902564103
## 184  0.0476323366 0.952367663 zero Group1 352  461  679  38 0.902564103
## 698  0.0475056842 0.952494316 zero Group1 352  460  680  38 0.902564103
## 1219 0.0472631827 0.952736817  one Group1 353  460  680  37 0.905128205
## 641  0.0470480435 0.952951957  one Group1 354  460  680  36 0.907692308
## 590  0.0459971763 0.954002824 zero Group1 354  459  681  36 0.907692308
## 1438 0.0457054973 0.954294503 zero Group1 354  458  682  36 0.907692308
## 278  0.0456016511 0.954398349 zero Group1 354  457  683  36 0.907692308
## 952  0.0455679484 0.954432052 zero Group1 354  456  684  36 0.907692308
## 128  0.0455036722 0.954496328  one Group1 355  456  684  35 0.910256410
## 597  0.0445676148 0.955432385 zero Group1 355  455  685  35 0.910256410
## 186  0.0443804711 0.955619529 zero Group1 355  454  686  35 0.910256410
## 1154 0.0432975143 0.956702486 zero Group1 355  453  687  35 0.910256410
## 987  0.0431125872 0.956887413 zero Group1 355  452  688  35 0.910256410
## 800  0.0430570096 0.956942990 zero Group1 355  451  689  35 0.910256410
## 955  0.0428163409 0.957183659 zero Group1 355  450  690  35 0.910256410
## 716  0.0428086147 0.957191385 zero Group1 355  449  691  35 0.910256410
## 1257 0.0427909456 0.957209054 zero Group1 355  448  692  35 0.910256410
## 1353 0.0425790362 0.957420964 zero Group1 355  447  693  35 0.910256410
## 630  0.0425443575 0.957455643 zero Group1 355  446  694  35 0.910256410
## 720  0.0420523807 0.957947619 zero Group1 355  445  695  35 0.910256410
## 436  0.0418053307 0.958194669 zero Group1 355  444  696  35 0.910256410
## 1466 0.0414911062 0.958508894 zero Group1 355  443  697  35 0.910256410
## 1243 0.0412972681 0.958702732 zero Group1 355  442  698  35 0.910256410
## 1142 0.0409788117 0.959021188 zero Group1 355  441  699  35 0.910256410
## 380  0.0408343337 0.959165666 zero Group1 355  440  700  35 0.910256410
## 697  0.0407324508 0.959267549 zero Group1 355  439  701  35 0.910256410
## 1403 0.0403745994 0.959625401 zero Group1 355  438  702  35 0.910256410
## 699  0.0403183103 0.959681690 zero Group1 355  437  703  35 0.910256410
## 962  0.0400140993 0.959985901 zero Group1 355  436  704  35 0.910256410
## 1350 0.0398936681 0.960106332 zero Group1 355  435  705  35 0.910256410
## 1479 0.0396529287 0.960347071 zero Group1 355  434  706  35 0.910256410
## 1387 0.0396308787 0.960369121 zero Group1 355  433  707  35 0.910256410
## 1371 0.0393386371 0.960661363  one Group1 356  433  707  34 0.912820513
## 48   0.0392089449 0.960791055 zero Group1 356  432  708  34 0.912820513
## 961  0.0389287919 0.961071208 zero Group1 356  431  709  34 0.912820513
## 1357 0.0389279798 0.961072020 zero Group1 356  430  710  34 0.912820513
## 1389 0.0388520360 0.961147964 zero Group1 356  429  711  34 0.912820513
## 571  0.0385430790 0.961456921  one Group1 357  429  711  33 0.915384615
## 1168 0.0382612348 0.961738765  one Group1 358  429  711  32 0.917948718
## 95   0.0381887928 0.961811207 zero Group1 358  428  712  32 0.917948718
## 709  0.0381276757 0.961872324 zero Group1 358  427  713  32 0.917948718
## 1505 0.0380260758 0.961973924 zero Group1 358  426  714  32 0.917948718
## 1467 0.0377834439 0.962216556 zero Group1 358  425  715  32 0.917948718
## 1140 0.0376396440 0.962360356 zero Group1 358  424  716  32 0.917948718
## 1157 0.0371770002 0.962823000 zero Group1 358  423  717  32 0.917948718
## 1044 0.0369142033 0.963085797 zero Group1 358  422  718  32 0.917948718
## 1320 0.0364043713 0.963595629 zero Group1 358  421  719  32 0.917948718
## 1156 0.0363211818 0.963678818 zero Group1 358  420  720  32 0.917948718
## 946  0.0362915993 0.963708401 zero Group1 358  419  721  32 0.917948718
## 1069 0.0361423083 0.963857692 zero Group1 358  418  722  32 0.917948718
## 1023 0.0361334980 0.963866502 zero Group1 358  417  723  32 0.917948718
## 1143 0.0361162461 0.963883754 zero Group1 358  416  724  32 0.917948718
## 286  0.0356830694 0.964316931 zero Group1 358  415  725  32 0.917948718
## 680  0.0353032909 0.964696709 zero Group1 358  414  726  32 0.917948718
## 711  0.0352924466 0.964707553 zero Group1 358  413  727  32 0.917948718
## 924  0.0352188163 0.964781184  one Group1 359  413  727  31 0.920512821
## 606  0.0350900590 0.964909941  one Group1 360  413  727  30 0.923076923
## 1108 0.0348736383 0.965126362 zero Group1 360  412  728  30 0.923076923
## 664  0.0344077833 0.965592217 zero Group1 360  411  729  30 0.923076923
## 656  0.0344053768 0.965594623 zero Group1 360  410  730  30 0.923076923
## 862  0.0343871936 0.965612806 zero Group1 360  409  731  30 0.923076923
## 1349 0.0343009271 0.965699073 zero Group1 360  408  732  30 0.923076923
## 953  0.0342749618 0.965725038 zero Group1 360  407  733  30 0.923076923
## 744  0.0342155881 0.965784412 zero Group1 360  406  734  30 0.923076923
## 546  0.0341449231 0.965855077 zero Group1 360  405  735  30 0.923076923
## 1180 0.0338976793 0.966102321  one Group1 361  405  735  29 0.925641026
## 671  0.0337376110 0.966262389 zero Group1 361  404  736  29 0.925641026
## 1304 0.0335675701 0.966432430 zero Group1 361  403  737  29 0.925641026
## 984  0.0335489362 0.966451064 zero Group1 361  402  738  29 0.925641026
## 464  0.0334582254 0.966541775 zero Group1 361  401  739  29 0.925641026
## 1189 0.0334483422 0.966551658 zero Group1 361  400  740  29 0.925641026
## 388  0.0334453806 0.966554619 zero Group1 361  399  741  29 0.925641026
## 586  0.0332604311 0.966739569 zero Group1 361  398  742  29 0.925641026
## 990  0.0331618190 0.966838181 zero Group1 361  397  743  29 0.925641026
## 1236 0.0327218547 0.967278145 zero Group1 361  396  744  29 0.925641026
## 349  0.0326006003 0.967399400 zero Group1 361  395  745  29 0.925641026
## 1002 0.0323492363 0.967650764 zero Group1 361  394  746  29 0.925641026
## 117  0.0323483087 0.967651691  one Group1 362  394  746  28 0.928205128
## 607  0.0323135518 0.967686448  one Group1 363  394  746  27 0.930769231
## 98   0.0321909226 0.967809077 zero Group1 363  393  747  27 0.930769231
## 1369 0.0321859978 0.967814002 zero Group1 363  392  748  27 0.930769231
## 333  0.0321549848 0.967845015 zero Group1 363  391  749  27 0.930769231
## 311  0.0321371146 0.967862885 zero Group1 363  390  750  27 0.930769231
## 1021 0.0318157449 0.968184255 zero Group1 363  389  751  27 0.930769231
## 948  0.0317637995 0.968236201 zero Group1 363  388  752  27 0.930769231
## 1166 0.0317430310 0.968256969 zero Group1 363  387  753  27 0.930769231
## 668  0.0317186452 0.968281355 zero Group1 363  386  754  27 0.930769231
## 587  0.0316092484 0.968390752 zero Group1 363  385  755  27 0.930769231
## 1442 0.0315598138 0.968440186 zero Group1 363  384  756  27 0.930769231
## 959  0.0315361023 0.968463898 zero Group1 363  383  757  27 0.930769231
## 906  0.0312043019 0.968795698 zero Group1 363  382  758  27 0.930769231
## 507  0.0311382320 0.968861768 zero Group1 363  381  759  27 0.930769231
## 1059 0.0309484545 0.969051545  one Group1 364  381  759  26 0.933333333
## 639  0.0309012923 0.969098708 zero Group1 364  380  760  26 0.933333333
## 996  0.0308441073 0.969155893 zero Group1 364  379  761  26 0.933333333
## 1409 0.0302165281 0.969783472 zero Group1 364  378  762  26 0.933333333
## 938  0.0301346704 0.969865330 zero Group1 364  377  763  26 0.933333333
## 896  0.0300127640 0.969987236 zero Group1 364  376  764  26 0.933333333
## 52   0.0297553726 0.970244627 zero Group1 364  375  765  26 0.933333333
## 378  0.0297552347 0.970244765 zero Group1 364  374  766  26 0.933333333
## 1079 0.0297527276 0.970247272 zero Group1 364  373  767  26 0.933333333
## 982  0.0297042374 0.970295763 zero Group1 364  372  768  26 0.933333333
## 988  0.0295815226 0.970418477 zero Group1 364  371  769  26 0.933333333
## 700  0.0291526075 0.970847392 zero Group1 364  370  770  26 0.933333333
## 383  0.0289596990 0.971040301 zero Group1 364  369  771  26 0.933333333
## 840  0.0287796725 0.971220328 zero Group1 364  368  772  26 0.933333333
## 130  0.0285647903 0.971435210 zero Group1 364  367  773  26 0.933333333
## 1277 0.0283503253 0.971649675 zero Group1 364  366  774  26 0.933333333
## 468  0.0283127706 0.971687229 zero Group1 364  365  775  26 0.933333333
## 719  0.0280581582 0.971941842 zero Group1 364  364  776  26 0.933333333
## 1114 0.0278980862 0.972101914 zero Group1 364  363  777  26 0.933333333
## 790  0.0278834347 0.972116565 zero Group1 364  362  778  26 0.933333333
## 68   0.0278791394 0.972120861 zero Group1 364  361  779  26 0.933333333
## 1032 0.0276850406 0.972314959 zero Group1 364  360  780  26 0.933333333
## 1260 0.0275626462 0.972437354 zero Group1 364  359  781  26 0.933333333
## 1399 0.0274160225 0.972583978 zero Group1 364  358  782  26 0.933333333
## 1244 0.0272499137 0.972750086 zero Group1 364  357  783  26 0.933333333
## 910  0.0266729668 0.973327033 zero Group1 364  356  784  26 0.933333333
## 882  0.0266582798 0.973341720 zero Group1 364  355  785  26 0.933333333
## 356  0.0265133996 0.973486600  one Group1 365  355  785  25 0.935897436
## 458  0.0263746865 0.973625313 zero Group1 365  354  786  25 0.935897436
## 1204 0.0259105787 0.974089421 zero Group1 365  353  787  25 0.935897436
## 1207 0.0259097703 0.974090230 zero Group1 365  352  788  25 0.935897436
## 220  0.0257378742 0.974262126  one Group1 366  352  788  24 0.938461538
## 814  0.0257261284 0.974273872  one Group1 367  352  788  23 0.941025641
## 466  0.0251983721 0.974801628 zero Group1 367  351  789  23 0.941025641
## 892  0.0245718174 0.975428183 zero Group1 367  350  790  23 0.941025641
## 616  0.0245629866 0.975437013 zero Group1 367  349  791  23 0.941025641
## 947  0.0242754649 0.975724535 zero Group1 367  348  792  23 0.941025641
## 1444 0.0242507495 0.975749251 zero Group1 367  347  793  23 0.941025641
## 1110 0.0242202301 0.975779770 zero Group1 367  346  794  23 0.941025641
## 530  0.0241385661 0.975861434 zero Group1 367  345  795  23 0.941025641
## 645  0.0240980200 0.975901980 zero Group1 367  344  796  23 0.941025641
## 646  0.0240276307 0.975972369 zero Group1 367  343  797  23 0.941025641
## 465  0.0237145517 0.976285448 zero Group1 367  342  798  23 0.941025641
## 912  0.0235176962 0.976482304 zero Group1 367  341  799  23 0.941025641
## 329  0.0230863281 0.976913672 zero Group1 367  340  800  23 0.941025641
## 548  0.0228250492 0.977174951 zero Group1 367  339  801  23 0.941025641
## 625  0.0222717170 0.977728283 zero Group1 367  338  802  23 0.941025641
## 683  0.0221442226 0.977855777  one Group1 368  338  802  22 0.943589744
## 675  0.0221240763 0.977875924 zero Group1 368  337  803  22 0.943589744
## 577  0.0220693182 0.977930682 zero Group1 368  336  804  22 0.943589744
## 1150 0.0219123028 0.978087697 zero Group1 368  335  805  22 0.943589744
## 1263 0.0218951609 0.978104839 zero Group1 368  334  806  22 0.943589744
## 398  0.0218521748 0.978147825 zero Group1 368  333  807  22 0.943589744
## 519  0.0217684954 0.978231505  one Group1 369  333  807  21 0.946153846
## 554  0.0215592291 0.978440771 zero Group1 369  332  808  21 0.946153846
## 1195 0.0214299839 0.978570016 zero Group1 369  331  809  21 0.946153846
## 631  0.0212514345 0.978748566 zero Group1 369  330  810  21 0.946153846
## 580  0.0212184023 0.978781598 zero Group1 369  329  811  21 0.946153846
## 1022 0.0211754050 0.978824595 zero Group1 369  328  812  21 0.946153846
## 4    0.0207679402 0.979232060 zero Group1 369  327  813  21 0.946153846
## 1446 0.0207118262 0.979288174 zero Group1 369  326  814  21 0.946153846
## 1354 0.0206231643 0.979376836 zero Group1 369  325  815  21 0.946153846
## 1311 0.0206157546 0.979384245 zero Group1 369  324  816  21 0.946153846
## 1394 0.0204903204 0.979509680 zero Group1 369  323  817  21 0.946153846
## 914  0.0203967709 0.979603229 zero Group1 369  322  818  21 0.946153846
## 312  0.0202108975 0.979789102 zero Group1 369  321  819  21 0.946153846
## 1471 0.0200522393 0.979947761 zero Group1 369  320  820  21 0.946153846
## 1307 0.0200499557 0.979950044 zero Group1 369  319  821  21 0.946153846
## 430  0.0200028159 0.979997184 zero Group1 369  318  822  21 0.946153846
## 332  0.0199822765 0.980017724 zero Group1 369  317  823  21 0.946153846
## 718  0.0198712852 0.980128715 zero Group1 369  316  824  21 0.946153846
## 598  0.0196981784 0.980301822 zero Group1 369  315  825  21 0.946153846
## 104  0.0196886044 0.980311396 zero Group1 369  314  826  21 0.946153846
## 206  0.0196645074 0.980335493  one Group1 370  314  826  20 0.948717949
## 511  0.0195967536 0.980403246 zero Group1 370  313  827  20 0.948717949
## 1473 0.0195713062 0.980428694 zero Group1 370  312  828  20 0.948717949
## 605  0.0195479784 0.980452022  one Group1 371  312  828  19 0.951282051
## 677  0.0195210874 0.980478913 zero Group1 371  311  829  19 0.951282051
## 964  0.0193889719 0.980611028 zero Group1 371  310  830  19 0.951282051
## 512  0.0193386283 0.980661372 zero Group1 371  309  831  19 0.951282051
## 1489 0.0191679951 0.980832005 zero Group1 371  308  832  19 0.951282051
## 879  0.0191248022 0.980875198 zero Group1 371  307  833  19 0.951282051
## 112  0.0191196408 0.980880359 zero Group1 371  306  834  19 0.951282051
## 157  0.0190453529 0.980954647 zero Group1 371  305  835  19 0.951282051
## 773  0.0189143289 0.981085671 zero Group1 371  304  836  19 0.951282051
## 1072 0.0187370833 0.981262917 zero Group1 371  303  837  19 0.951282051
## 384  0.0187279712 0.981272029 zero Group1 371  302  838  19 0.951282051
## 230  0.0187220927 0.981277907 zero Group1 371  301  839  19 0.951282051
## 74   0.0186184291 0.981381571 zero Group1 371  300  840  19 0.951282051
## 494  0.0186044853 0.981395515 zero Group1 371  299  841  19 0.951282051
## 1318 0.0185934156 0.981406584 zero Group1 371  298  842  19 0.951282051
## 1327 0.0184471104 0.981552890 zero Group1 371  297  843  19 0.951282051
## 428  0.0182476081 0.981752392 zero Group1 371  296  844  19 0.951282051
## 1120 0.0181094259 0.981890574 zero Group1 371  295  845  19 0.951282051
## 352  0.0180239547 0.981976045 zero Group1 371  294  846  19 0.951282051
## 273  0.0179023482 0.982097652 zero Group1 371  293  847  19 0.951282051
## 537  0.0178780612 0.982121939 zero Group1 371  292  848  19 0.951282051
## 1449 0.0178666022 0.982133398 zero Group1 371  291  849  19 0.951282051
## 706  0.0178479943 0.982152006 zero Group1 371  290  850  19 0.951282051
## 802  0.0177785084 0.982221492 zero Group1 371  289  851  19 0.951282051
## 594  0.0177107807 0.982289219 zero Group1 371  288  852  19 0.951282051
## 1441 0.0177034903 0.982296510 zero Group1 371  287  853  19 0.951282051
## 261  0.0175195429 0.982480457  one Group1 372  287  853  18 0.953846154
## 791  0.0174825732 0.982517427 zero Group1 372  286  854  18 0.953846154
## 943  0.0174317248 0.982568275 zero Group1 372  285  855  18 0.953846154
## 920  0.0172516201 0.982748380 zero Group1 372  284  856  18 0.953846154
## 1025 0.0170880165 0.982911984 zero Group1 372  283  857  18 0.953846154
## 1082 0.0169966500 0.983003350 zero Group1 372  282  858  18 0.953846154
## 1395 0.0169429891 0.983057011 zero Group1 372  281  859  18 0.953846154
## 911  0.0169383604 0.983061640 zero Group1 372  280  860  18 0.953846154
## 244  0.0167680122 0.983231988 zero Group1 372  279  861  18 0.953846154
## 121  0.0167532545 0.983246746  one Group1 373  279  861  17 0.956410256
## 701  0.0166892093 0.983310791 zero Group1 373  278  862  17 0.956410256
## 473  0.0165617485 0.983438252 zero Group1 373  277  863  17 0.956410256
## 1484 0.0164847653 0.983515235 zero Group1 373  276  864  17 0.956410256
## 994  0.0164230857 0.983576914 zero Group1 373  275  865  17 0.956410256
## 1519 0.0163478237 0.983652176 zero Group1 373  274  866  17 0.956410256
## 357  0.0162209570 0.983779043  one Group1 374  274  866  16 0.958974359
## 341  0.0161752272 0.983824773 zero Group1 374  273  867  16 0.958974359
## 1276 0.0161679592 0.983832041 zero Group1 374  272  868  16 0.958974359
## 15   0.0161170010 0.983882999 zero Group1 374  271  869  16 0.958974359
## 1227 0.0160143916 0.983985608 zero Group1 374  270  870  16 0.958974359
## 1020 0.0159749072 0.984025093 zero Group1 374  269  871  16 0.958974359
## 957  0.0159409940 0.984059006 zero Group1 374  268  872  16 0.958974359
## 1149 0.0158113409 0.984188659 zero Group1 374  267  873  16 0.958974359
## 1429 0.0156189529 0.984381047 zero Group1 374  266  874  16 0.958974359
## 737  0.0155828726 0.984417127 zero Group1 374  265  875  16 0.958974359
## 268  0.0151812695 0.984818731 zero Group1 374  264  876  16 0.958974359
## 432  0.0150552029 0.984944797 zero Group1 374  263  877  16 0.958974359
## 1524 0.0149256587 0.985074341 zero Group1 374  262  878  16 0.958974359
## 1487 0.0148740206 0.985125979 zero Group1 374  261  879  16 0.958974359
## 1163 0.0148480730 0.985151927 zero Group1 374  260  880  16 0.958974359
## 1245 0.0148469573 0.985153043 zero Group1 374  259  881  16 0.958974359
## 1485 0.0148094948 0.985190505 zero Group1 374  258  882  16 0.958974359
## 1434 0.0145649100 0.985435090 zero Group1 374  257  883  16 0.958974359
## 897  0.0145419799 0.985458020 zero Group1 374  256  884  16 0.958974359
## 922  0.0145317893 0.985468211 zero Group1 374  255  885  16 0.958974359
## 921  0.0145248454 0.985475155 zero Group1 374  254  886  16 0.958974359
## 532  0.0144279795 0.985572021 zero Group1 374  253  887  16 0.958974359
## 1310 0.0144036161 0.985596384 zero Group1 374  252  888  16 0.958974359
## 663  0.0142135173 0.985786483 zero Group1 374  251  889  16 0.958974359
## 474  0.0141797895 0.985820211 zero Group1 374  250  890  16 0.958974359
## 1118 0.0141640333 0.985835967 zero Group1 374  249  891  16 0.958974359
## 784  0.0141282771 0.985871723 zero Group1 374  248  892  16 0.958974359
## 1393 0.0139497928 0.986050207 zero Group1 374  247  893  16 0.958974359
## 1086 0.0137701780 0.986229822 zero Group1 374  246  894  16 0.958974359
## 151  0.0136566497 0.986343350 zero Group1 374  245  895  16 0.958974359
## 478  0.0136164417 0.986383558  one Group1 375  245  895  15 0.961538462
## 636  0.0135095902 0.986490410 zero Group1 375  244  896  15 0.961538462
## 173  0.0135046085 0.986495391 zero Group1 375  243  897  15 0.961538462
## 387  0.0134939589 0.986506041 zero Group1 375  242  898  15 0.961538462
## 1076 0.0134018995 0.986598101 zero Group1 375  241  899  15 0.961538462
## 669  0.0132940570 0.986705943 zero Group1 375  240  900  15 0.961538462
## 353  0.0131521672 0.986847833 zero Group1 375  239  901  15 0.961538462
## 871  0.0131134195 0.986886580 zero Group1 375  238  902  15 0.961538462
## 1193 0.0131061515 0.986893849 zero Group1 375  237  903  15 0.961538462
## 1123 0.0130058089 0.986994191 zero Group1 375  236  904  15 0.961538462
## 1233 0.0129804807 0.987019519 zero Group1 375  235  905  15 0.961538462
## 873  0.0129672429 0.987032757 zero Group1 375  234  906  15 0.961538462
## 1321 0.0129614342 0.987038566 zero Group1 375  233  907  15 0.961538462
## 509  0.0129538532 0.987046147 zero Group1 375  232  908  15 0.961538462
## 1367 0.0128727965 0.987127203 zero Group1 375  231  909  15 0.961538462
## 556  0.0128049953 0.987195005 zero Group1 375  230  910  15 0.961538462
## 1255 0.0127280513 0.987271949 zero Group1 375  229  911  15 0.961538462
## 84   0.0126883620 0.987311638 zero Group1 375  228  912  15 0.961538462
## 572  0.0126638645 0.987336135 zero Group1 375  227  913  15 0.961538462
## 591  0.0125364168 0.987463583 zero Group1 375  226  914  15 0.961538462
## 1315 0.0124994135 0.987500587 zero Group1 375  225  915  15 0.961538462
## 89   0.0123113990 0.987688601  one Group1 376  225  915  14 0.964102564
## 944  0.0123034753 0.987696525 zero Group1 376  224  916  14 0.964102564
## 941  0.0122269839 0.987773016 zero Group1 376  223  917  14 0.964102564
## 1426 0.0120733008 0.987926699 zero Group1 376  222  918  14 0.964102564
## 1274 0.0120517863 0.987948214 zero Group1 376  221  919  14 0.964102564
## 347  0.0119751319 0.988024868 zero Group1 376  220  920  14 0.964102564
## 935  0.0118500432 0.988149957  one Group1 377  220  920  13 0.966666667
## 243  0.0117931711 0.988206829 zero Group1 377  219  921  13 0.966666667
## 1523 0.0114867855 0.988513215 zero Group1 377  218  922  13 0.966666667
## 1468 0.0113777667 0.988622233 zero Group1 377  217  923  13 0.966666667
## 24   0.0113287298 0.988671270 zero Group1 377  216  924  13 0.966666667
## 1406 0.0112863658 0.988713634 zero Group1 377  215  925  13 0.966666667
## 1230 0.0112452982 0.988754702 zero Group1 377  214  926  13 0.966666667
## 918  0.0111855976 0.988814402 zero Group1 377  213  927  13 0.966666667
## 454  0.0111614987 0.988838501 zero Group1 377  212  928  13 0.966666667
## 978  0.0109273195 0.989072680 zero Group1 377  211  929  13 0.966666667
## 787  0.0108622517 0.989137748 zero Group1 377  210  930  13 0.966666667
## 1410 0.0108000785 0.989199921 zero Group1 377  209  931  13 0.966666667
## 898  0.0107597150 0.989240285 zero Group1 377  208  932  13 0.966666667
## 983  0.0107202595 0.989279740 zero Group1 377  207  933  13 0.966666667
## 420  0.0106568485 0.989343151 zero Group1 377  206  934  13 0.966666667
## 937  0.0106507121 0.989349288 zero Group1 377  205  935  13 0.966666667
## 377  0.0106285661 0.989371434 zero Group1 377  204  936  13 0.966666667
## 1246 0.0105853705 0.989414630 zero Group1 377  203  937  13 0.966666667
## 585  0.0105682993 0.989431701 zero Group1 377  202  938  13 0.966666667
## 1125 0.0105259521 0.989474048 zero Group1 377  201  939  13 0.966666667
## 463  0.0104855932 0.989514407 zero Group1 377  200  940  13 0.966666667
## 915  0.0102839377 0.989716062 zero Group1 377  199  941  13 0.966666667
## 653  0.0102634570 0.989736543 zero Group1 377  198  942  13 0.966666667
## 827  0.0102400491 0.989759951 zero Group1 377  197  943  13 0.966666667
## 315  0.0100873485 0.989912651 zero Group1 377  196  944  13 0.966666667
## 159  0.0100685814 0.989931419 zero Group1 377  195  945  13 0.966666667
## 1283 0.0100370394 0.989962961 zero Group1 377  194  946  13 0.966666667
## 615  0.0100310566 0.989968943 zero Group1 377  193  947  13 0.966666667
## 721  0.0100296177 0.989970382  one Group1 378  193  947  12 0.969230769
## 1431 0.0099798525 0.990020148 zero Group1 378  192  948  12 0.969230769
## 531  0.0099717947 0.990028205 zero Group1 378  191  949  12 0.969230769
## 496  0.0099155931 0.990084407 zero Group1 378  190  950  12 0.969230769
## 1344 0.0097904988 0.990209501 zero Group1 378  189  951  12 0.969230769
## 573  0.0097773084 0.990222692 zero Group1 378  188  952  12 0.969230769
## 425  0.0097683566 0.990231643 zero Group1 378  187  953  12 0.969230769
## 1453 0.0096901190 0.990309881 zero Group1 378  186  954  12 0.969230769
## 778  0.0096858097 0.990314190 zero Group1 378  185  955  12 0.969230769
## 1224 0.0096655274 0.990334473 zero Group1 378  184  956  12 0.969230769
## 397  0.0096611697 0.990338830 zero Group1 378  183  957  12 0.969230769
## 657  0.0095400056 0.990459994 zero Group1 378  182  958  12 0.969230769
## 35   0.0095304716 0.990469528 zero Group1 378  181  959  12 0.969230769
## 992  0.0095185833 0.990481417 zero Group1 378  180  960  12 0.969230769
## 472  0.0094887512 0.990511249 zero Group1 378  179  961  12 0.969230769
## 1019 0.0094845397 0.990515460 zero Group1 378  178  962  12 0.969230769
## 880  0.0094600357 0.990539964 zero Group1 378  177  963  12 0.969230769
## 140  0.0092594707 0.990740529 zero Group1 378  176  964  12 0.969230769
## 210  0.0091639012 0.990836099 zero Group1 378  175  965  12 0.969230769
## 1303 0.0091320043 0.990867996 zero Group1 378  174  966  12 0.969230769
## 614  0.0091246972 0.990875303 zero Group1 378  173  967  12 0.969230769
## 1196 0.0090601174 0.990939883 zero Group1 378  172  968  12 0.969230769
## 839  0.0089454297 0.991054570 zero Group1 378  171  969  12 0.969230769
## 1475 0.0089350492 0.991064951 zero Group1 378  170  970  12 0.969230769
## 1231 0.0088690287 0.991130971 zero Group1 378  169  971  12 0.969230769
## 1014 0.0088087488 0.991191251 zero Group1 378  168  972  12 0.969230769
## 1175 0.0088054305 0.991194570  one Group1 379  168  972  11 0.971794872
## 262  0.0088020144 0.991197986 zero Group1 379  167  973  11 0.971794872
## 691  0.0087682363 0.991231764  one Group1 380  167  973  10 0.974358974
## 487  0.0086449748 0.991355025  one Group1 381  167  973   9 0.976923077
## 1039 0.0086218016 0.991378198 zero Group1 381  166  974   9 0.976923077
## 1465 0.0086192675 0.991380733 zero Group1 381  165  975   9 0.976923077
## 1381 0.0085798614 0.991420139 zero Group1 381  164  976   9 0.976923077
## 413  0.0085380273 0.991461973 zero Group1 381  163  977   9 0.976923077
## 450  0.0084581589 0.991541841  one Group1 382  163  977   8 0.979487179
## 861  0.0084128343 0.991587166 zero Group1 382  162  978   8 0.979487179
## 302  0.0083361808 0.991663819  one Group1 383  162  978   7 0.982051282
## 1486 0.0083252722 0.991674728 zero Group1 383  161  979   7 0.982051282
## 638  0.0082679996 0.991732000 zero Group1 383  160  980   7 0.982051282
## 1435 0.0082526915 0.991747309 zero Group1 383  159  981   7 0.982051282
## 451  0.0082518058 0.991748194 zero Group1 383  158  982   7 0.982051282
## 1007 0.0082064169 0.991793583  one Group1 384  158  982   6 0.984615385
## 476  0.0081734322 0.991826568 zero Group1 384  157  983   6 0.984615385
## 1361 0.0081731658 0.991826834 zero Group1 384  156  984   6 0.984615385
## 175  0.0081375111 0.991862489 zero Group1 384  155  985   6 0.984615385
## 170  0.0080935387 0.991906461 zero Group1 384  154  986   6 0.984615385
## 1000 0.0079597924 0.992040208 zero Group1 384  153  987   6 0.984615385
## 55   0.0079440195 0.992055980 zero Group1 384  152  988   6 0.984615385
## 786  0.0079030655 0.992096934 zero Group1 384  151  989   6 0.984615385
## 1116 0.0078422911 0.992157709 zero Group1 384  150  990   6 0.984615385
## 422  0.0077129044 0.992287096 zero Group1 384  149  991   6 0.984615385
## 593  0.0077036330 0.992296367 zero Group1 384  148  992   6 0.984615385
## 1525 0.0076941620 0.992305838 zero Group1 384  147  993   6 0.984615385
## 740  0.0076508578 0.992349142 zero Group1 384  146  994   6 0.984615385
## 1111 0.0076168152 0.992383185 zero Group1 384  145  995   6 0.984615385
## 904  0.0076106791 0.992389321 zero Group1 384  144  996   6 0.984615385
## 1463 0.0075642965 0.992435704 zero Group1 384  143  997   6 0.984615385
## 1529 0.0075531220 0.992446878 zero Group1 384  142  998   6 0.984615385
## 1202 0.0075445026 0.992455497 zero Group1 384  141  999   6 0.984615385
## 9    0.0075436099 0.992456390 zero Group1 384  140 1000   6 0.984615385
## 655  0.0075402725 0.992459727 zero Group1 384  139 1001   6 0.984615385
## 1024 0.0075269635 0.992473037 zero Group1 384  138 1002   6 0.984615385
## 1396 0.0074653272 0.992534673 zero Group1 384  137 1003   6 0.984615385
## 1228 0.0074376147 0.992562385 zero Group1 384  136 1004   6 0.984615385
## 1309 0.0072856764 0.992714324 zero Group1 384  135 1005   6 0.984615385
## 376  0.0072122463 0.992787754 zero Group1 384  134 1006   6 0.984615385
## 516  0.0072067445 0.992793255 zero Group1 384  133 1007   6 0.984615385
## 797  0.0071900734 0.992809927 zero Group1 384  132 1008   6 0.984615385
## 1068 0.0071586599 0.992841340 zero Group1 384  131 1009   6 0.984615385
## 147  0.0069415006 0.993058499 zero Group1 384  130 1010   6 0.984615385
## 1407 0.0069073662 0.993092634 zero Group1 384  129 1011   6 0.984615385
## 274  0.0068678064 0.993132194 zero Group1 384  128 1012   6 0.984615385
## 1325 0.0068618306 0.993138169 zero Group1 384  127 1013   6 0.984615385
## 44   0.0068603368 0.993139663 zero Group1 384  126 1014   6 0.984615385
## 1448 0.0068179914 0.993182009 zero Group1 384  125 1015   6 0.984615385
## 1488 0.0067085894 0.993291411 zero Group1 384  124 1016   6 0.984615385
## 410  0.0066713858 0.993328614 zero Group1 384  123 1017   6 0.984615385
## 1385 0.0064683971 0.993531603 zero Group1 384  122 1018   6 0.984615385
## 676  0.0064507364 0.993549264 zero Group1 384  121 1019   6 0.984615385
## 47   0.0064214431 0.993578557 zero Group1 384  120 1020   6 0.984615385
## 788  0.0063139577 0.993686042 zero Group1 384  119 1021   6 0.984615385
## 1319 0.0062152073 0.993784793 zero Group1 384  118 1022   6 0.984615385
## 878  0.0061848750 0.993815125 zero Group1 384  117 1023   6 0.984615385
## 1001 0.0061645382 0.993835462 zero Group1 384  116 1024   6 0.984615385
## 1103 0.0061550802 0.993844920 zero Group1 384  115 1025   6 0.984615385
## 351  0.0061372486 0.993862751 zero Group1 384  114 1026   6 0.984615385
## 1209 0.0061075748 0.993892425  one Group1 385  114 1026   5 0.987179487
## 1144 0.0060811038 0.993918896 zero Group1 385  113 1027   5 0.987179487
## 1159 0.0060602301 0.993939770 zero Group1 385  112 1028   5 0.987179487
## 134  0.0060467999 0.993953200 zero Group1 385  111 1029   5 0.987179487
## 662  0.0060032262 0.993996774 zero Group1 385  110 1030   5 0.987179487
## 525  0.0059733014 0.994026699 zero Group1 385  109 1031   5 0.987179487
## 1141 0.0059711812 0.994028819 zero Group1 385  108 1032   5 0.987179487
## 1229 0.0059456187 0.994054381 zero Group1 385  107 1033   5 0.987179487
## 908  0.0059237839 0.994076216 zero Group1 385  106 1034   5 0.987179487
## 647  0.0058355415 0.994164458 zero Group1 385  105 1035   5 0.987179487
## 1128 0.0057816766 0.994218323  one Group1 386  105 1035   4 0.989743590
## 799  0.0057200701 0.994279930 zero Group1 386  104 1036   4 0.989743590
## 414  0.0056863003 0.994313700 zero Group1 386  103 1037   4 0.989743590
## 1203 0.0055976538 0.994402346 zero Group1 386  102 1038   4 0.989743590
## 553  0.0055813198 0.994418680 zero Group1 386  101 1039   4 0.989743590
## 247  0.0055164210 0.994483579 zero Group1 386  100 1040   4 0.989743590
## 741  0.0054973452 0.994502655 zero Group1 386   99 1041   4 0.989743590
## 1411 0.0054956926 0.994504307 zero Group1 386   98 1042   4 0.989743590
## 477  0.0054009645 0.994599035  one Group1 387   98 1042   3 0.992307692
## 661  0.0053943289 0.994605671 zero Group1 387   97 1043   3 0.992307692
## 1458 0.0053865956 0.994613404 zero Group1 387   96 1044   3 0.992307692
## 1080 0.0053388327 0.994661167 zero Group1 387   95 1045   3 0.992307692
## 820  0.0053252624 0.994674738 zero Group1 387   94 1046   3 0.992307692
## 734  0.0053189290 0.994681071 zero Group1 387   93 1047   3 0.992307692
## 467  0.0052254298 0.994774570 zero Group1 387   92 1048   3 0.992307692
## 1507 0.0051534516 0.994846548 zero Group1 387   91 1049   3 0.992307692
## 51   0.0050421264 0.994957874 zero Group1 387   90 1050   3 0.992307692
## 471  0.0050303084 0.994969692 zero Group1 387   89 1051   3 0.992307692
## 634  0.0050162165 0.994983783 zero Group1 387   88 1052   3 0.992307692
## 868  0.0049950578 0.995004942 zero Group1 387   87 1053   3 0.992307692
## 1234 0.0049431846 0.995056815 zero Group1 387   86 1054   3 0.992307692
## 27   0.0048766229 0.995123377  one Group1 388   86 1054   2 0.994871795
## 245  0.0048655379 0.995134462 zero Group1 388   85 1055   2 0.994871795
## 513  0.0047939001 0.995206100 zero Group1 388   84 1056   2 0.994871795
## 317  0.0047908407 0.995209159 zero Group1 388   83 1057   2 0.994871795
## 626  0.0047857077 0.995214292 zero Group1 388   82 1058   2 0.994871795
## 469  0.0046499185 0.995350081 zero Group1 388   81 1059   2 0.994871795
## 1067 0.0046477430 0.995352257 zero Group1 388   80 1060   2 0.994871795
## 539  0.0046223672 0.995377633 zero Group1 388   79 1061   2 0.994871795
## 782  0.0046079820 0.995392018 zero Group1 388   78 1062   2 0.994871795
## 429  0.0045878212 0.995412179 zero Group1 388   77 1063   2 0.994871795
## 503  0.0045566480 0.995443352 zero Group1 388   76 1064   2 0.994871795
## 1332 0.0045266501 0.995473350  one Group1 389   76 1064   1 0.997435897
## 715  0.0044455128 0.995554487 zero Group1 389   75 1065   1 0.997435897
## 1164 0.0044403286 0.995559671 zero Group1 389   74 1066   1 0.997435897
## 1408 0.0044360138 0.995563986 zero Group1 389   73 1067   1 0.997435897
## 672  0.0044239694 0.995576031 zero Group1 389   72 1068   1 0.997435897
## 735  0.0043980014 0.995601999 zero Group1 389   71 1069   1 0.997435897
## 1198 0.0043393564 0.995660644 zero Group1 389   70 1070   1 0.997435897
## 901  0.0040633935 0.995936607 zero Group1 389   69 1071   1 0.997435897
## 710  0.0040462902 0.995953710 zero Group1 389   68 1072   1 0.997435897
## 890  0.0040340275 0.995965973 zero Group1 389   67 1073   1 0.997435897
## 909  0.0039852783 0.996014722 zero Group1 389   66 1074   1 0.997435897
## 17   0.0039813397 0.996018660  one Group1 390   66 1074   0 1.000000000
## 303  0.0039728847 0.996027115 zero Group1 390   65 1075   0 1.000000000
## 1433 0.0039024353 0.996097565 zero Group1 390   64 1076   0 1.000000000
## 1081 0.0038332480 0.996166752 zero Group1 390   63 1077   0 1.000000000
## 960  0.0037516123 0.996248388 zero Group1 390   62 1078   0 1.000000000
## 409  0.0037362152 0.996263785 zero Group1 390   61 1079   0 1.000000000
## 225  0.0036008798 0.996399120 zero Group1 390   60 1080   0 1.000000000
## 917  0.0035714507 0.996428549 zero Group1 390   59 1081   0 1.000000000
## 1160 0.0035004434 0.996499557 zero Group1 390   58 1082   0 1.000000000
## 1482 0.0034839937 0.996516006 zero Group1 390   57 1083   0 1.000000000
## 10   0.0033918119 0.996608188 zero Group1 390   56 1084   0 1.000000000
## 619  0.0033544477 0.996645552 zero Group1 390   55 1085   0 1.000000000
## 544  0.0033522567 0.996647743 zero Group1 390   54 1086   0 1.000000000
## 1043 0.0032816539 0.996718346 zero Group1 390   53 1087   0 1.000000000
## 1517 0.0032491339 0.996750866 zero Group1 390   52 1088   0 1.000000000
## 819  0.0032048468 0.996795153 zero Group1 390   51 1089   0 1.000000000
## 702  0.0031075235 0.996892476 zero Group1 390   50 1090   0 1.000000000
## 3    0.0030830749 0.996916925 zero Group1 390   49 1091   0 1.000000000
## 324  0.0030787913 0.996921209 zero Group1 390   48 1092   0 1.000000000
## 660  0.0030573327 0.996942667 zero Group1 390   47 1093   0 1.000000000
## 1152 0.0030434306 0.996956569 zero Group1 390   46 1094   0 1.000000000
## 455  0.0030140551 0.996985945 zero Group1 390   45 1095   0 1.000000000
## 1457 0.0029919257 0.997008074 zero Group1 390   44 1096   0 1.000000000
## 1511 0.0029885322 0.997011468 zero Group1 390   43 1097   0 1.000000000
## 499  0.0029616163 0.997038384 zero Group1 390   42 1098   0 1.000000000
## 1345 0.0027941682 0.997205832 zero Group1 390   41 1099   0 1.000000000
## 1405 0.0027805415 0.997219458 zero Group1 390   40 1100   0 1.000000000
## 1201 0.0027473622 0.997252638 zero Group1 390   39 1101   0 1.000000000
## 1363 0.0026299960 0.997370004 zero Group1 390   38 1102   0 1.000000000
## 1447 0.0026279420 0.997372058 zero Group1 390   37 1103   0 1.000000000
## 555  0.0025933944 0.997406606 zero Group1 390   36 1104   0 1.000000000
## 418  0.0025425134 0.997457487 zero Group1 390   35 1105   0 1.000000000
## 1280 0.0025160476 0.997483952 zero Group1 390   34 1106   0 1.000000000
## 958  0.0024949114 0.997505089 zero Group1 390   33 1107   0 1.000000000
## 755  0.0023785718 0.997621428 zero Group1 390   32 1108   0 1.000000000
## 1513 0.0022205876 0.997779412 zero Group1 390   31 1109   0 1.000000000
## 1527 0.0021476715 0.997852328 zero Group1 390   30 1110   0 1.000000000
## 412  0.0019987910 0.998001209 zero Group1 390   29 1111   0 1.000000000
## 1308 0.0019431805 0.998056820 zero Group1 390   28 1112   0 1.000000000
## 883  0.0018555492 0.998144451 zero Group1 390   27 1113   0 1.000000000
## 1329 0.0018430242 0.998156976 zero Group1 390   26 1114   0 1.000000000
## 949  0.0018101163 0.998189884 zero Group1 390   25 1115   0 1.000000000
## 1165 0.0017954712 0.998204529 zero Group1 390   24 1116   0 1.000000000
## 1317 0.0016916002 0.998308400 zero Group1 390   23 1117   0 1.000000000
## 754  0.0016534210 0.998346579 zero Group1 390   22 1118   0 1.000000000
## 673  0.0016498867 0.998350113 zero Group1 390   21 1119   0 1.000000000
## 1282 0.0016283520 0.998371648 zero Group1 390   20 1120   0 1.000000000
## 633  0.0015881131 0.998411887 zero Group1 390   19 1121   0 1.000000000
## 1065 0.0014767970 0.998523203 zero Group1 390   18 1122   0 1.000000000
## 21   0.0014628384 0.998537162 zero Group1 390   17 1123   0 1.000000000
## 1041 0.0014533291 0.998546671 zero Group1 390   16 1124   0 1.000000000
## 981  0.0014466482 0.998553352 zero Group1 390   15 1125   0 1.000000000
## 823  0.0014439374 0.998556063 zero Group1 390   14 1126   0 1.000000000
## 1322 0.0013474078 0.998652592 zero Group1 390   13 1127   0 1.000000000
## 549  0.0013051535 0.998694847 zero Group1 390   12 1128   0 1.000000000
## 1083 0.0012015468 0.998798453 zero Group1 390   11 1129   0 1.000000000
## 1365 0.0011847923 0.998815208 zero Group1 390   10 1130   0 1.000000000
## 712  0.0011266737 0.998873326 zero Group1 390    9 1131   0 1.000000000
## 1512 0.0011225995 0.998877401 zero Group1 390    8 1132   0 1.000000000
## 37   0.0011089218 0.998891078 zero Group1 390    7 1133   0 1.000000000
## 1472 0.0010503809 0.998949619 zero Group1 390    6 1134   0 1.000000000
## 836  0.0009869048 0.999013095 zero Group1 390    5 1135   0 1.000000000
## 796  0.0008637778 0.999136222 zero Group1 390    4 1136   0 1.000000000
## 629  0.0008559044 0.999144096 zero Group1 390    3 1137   0 1.000000000
## 654  0.0008452382 0.999154762 zero Group1 390    2 1138   0 1.000000000
## 552  0.0008264895 0.999173511 zero Group1 390    1 1139   0 1.000000000
## 350  0.0006263873 0.999373613 zero Group1 390    0 1140   0 1.000000000
##             SPEC Informedness      PREC       NPV      MARK         F1
## 726  1.000000000  0.002564103 1.0000000 0.7455853 0.7455853 0.00511509
## 482  1.000000000  0.005128205 1.0000000 0.7460733 0.7460733 0.01020408
## 481  1.000000000  0.007692308 1.0000000 0.7465619 0.7465619 0.01526718
## 32   1.000000000  0.010256410 1.0000000 0.7470511 0.7470511 0.02030457
## 1050 1.000000000  0.012820513 1.0000000 0.7475410 0.7475410 0.02531646
## 1414 1.000000000  0.015384615 1.0000000 0.7480315 0.7480315 0.03030303
## 1131 0.999122807  0.014507422 0.8571429 0.7478661 0.6050089 0.03022670
## 1294 0.999122807  0.017071525 0.8750000 0.7483574 0.6233574 0.03517588
## 812  0.999122807  0.019635628 0.8888889 0.7488494 0.6377383 0.04010025
## 114  0.999122807  0.022199730 0.9000000 0.7493421 0.6493421 0.04500000
## 974  0.999122807  0.024763833 0.9090909 0.7498354 0.6589263 0.04987531
## 1491 0.999122807  0.027327935 0.9166667 0.7503294 0.6669960 0.05472637
## 91   0.999122807  0.029892038 0.9230769 0.7508240 0.6739009 0.05955335
## 1298 0.999122807  0.032456140 0.9285714 0.7513193 0.6798907 0.06435644
## 362  0.999122807  0.035020243 0.9333333 0.7518152 0.6851485 0.06913580
## 486  0.999122807  0.037584345 0.9375000 0.7523118 0.6898118 0.07389163
## 1380 0.998245614  0.036707152 0.8823529 0.7521481 0.6345010 0.07371007
## 767  0.997368421  0.035829960 0.8333333 0.7519841 0.5853175 0.07352941
## 145  0.997368421  0.038394062 0.8421053 0.7524818 0.5945871 0.07823961
## 11   0.996491228  0.037516869 0.8000000 0.7523179 0.5523179 0.07804878
## 241  0.995614035  0.036639676 0.7619048 0.7521537 0.5140585 0.07785888
## 1452 0.995614035  0.039203779 0.7727273 0.7526525 0.5253798 0.08252427
## 143  0.995614035  0.041767881 0.7826087 0.7531520 0.5357607 0.08716707
## 1495 0.995614035  0.044331984 0.7916667 0.7536521 0.5453187 0.09178744
## 1293 0.995614035  0.046896086 0.8000000 0.7541528 0.5541528 0.09638554
## 1469 0.994736842  0.046018893 0.7692308 0.7539894 0.5232201 0.09615385
## 1417 0.994736842  0.048582996 0.7777778 0.7544910 0.5322688 0.10071942
## 49   0.994736842  0.051147099 0.7857143 0.7549933 0.5407076 0.10526316
## 1061 0.993859649  0.050269906 0.7586207 0.7548301 0.5134508 0.10501193
## 310  0.992982456  0.049392713 0.7333333 0.7546667 0.4880000 0.10476190
## 1217 0.992982456  0.051956815 0.7419355 0.7551701 0.4971056 0.10926366
## 725  0.992982456  0.054520918 0.7500000 0.7556742 0.5056742 0.11374408
## 491  0.992105263  0.053643725 0.7272727 0.7555110 0.4827837 0.11347518
## 282  0.992105263  0.056207827 0.7352941 0.7560160 0.4913102 0.11792453
## 1127 0.992105263  0.058771930 0.7428571 0.7565217 0.4993789 0.12235294
## 684  0.992105263  0.061336032 0.7500000 0.7570281 0.5070281 0.12676056
## 439  0.992105263  0.063900135 0.7567568 0.7575352 0.5142919 0.13114754
## 438  0.992105263  0.066464238 0.7631579 0.7580429 0.5212008 0.13551402
## 510  0.991228070  0.065587045 0.7435897 0.7578806 0.5014704 0.13519814
## 1413 0.991228070  0.068151147 0.7500000 0.7583893 0.5083893 0.13953488
## 153  0.991228070  0.070715250 0.7560976 0.7588986 0.5149962 0.14385151
## 1509 0.990350877  0.069838057 0.7380952 0.7587366 0.4968318 0.14351852
## 285  0.990350877  0.072402159 0.7441860 0.7592468 0.5034329 0.14780600
## 1300 0.990350877  0.074966262 0.7500000 0.7597577 0.5097577 0.15207373
## 761  0.990350877  0.077530364 0.7555556 0.7602694 0.5158249 0.15632184
## 1420 0.990350877  0.080094467 0.7608696 0.7607817 0.5216512 0.16055046
## 926  0.990350877  0.082658570 0.7659574 0.7612947 0.5272521 0.16475973
## 1312 0.989473684  0.081781377 0.7500000 0.7611336 0.5111336 0.16438356
## 1053 0.989473684  0.084345479 0.7551020 0.7616475 0.5167496 0.16856492
## 1051 0.989473684  0.086909582 0.7600000 0.7621622 0.5221622 0.17272727
## 86   0.989473684  0.089473684 0.7647059 0.7626775 0.5273834 0.17687075
## 292  0.988596491  0.088596491 0.7500000 0.7625169 0.5125169 0.17647059
## 1290 0.988596491  0.091160594 0.7547170 0.7630332 0.5177502 0.18058691
## 602  0.988596491  0.093724696 0.7592593 0.7635501 0.5228094 0.18468468
## 78   0.987719298  0.092847503 0.7454545 0.7633898 0.5088444 0.18426966
## 850  0.987719298  0.095411606 0.7500000 0.7639077 0.5139077 0.18834081
## 687  0.987719298  0.097975709 0.7543860 0.7644263 0.5188123 0.19239374
## 1496 0.987719298  0.100539811 0.7586207 0.7649457 0.5235663 0.19642857
## 1249 0.987719298  0.103103914 0.7627119 0.7654657 0.5281775 0.20044543
## 87   0.986842105  0.102226721 0.7500000 0.7653061 0.5153061 0.20000000
## 1497 0.986842105  0.104790823 0.7540984 0.7658271 0.5199255 0.20399113
## 226  0.986842105  0.107354926 0.7580645 0.7663488 0.5244133 0.20796460
## 1188 0.985964912  0.106477733 0.7460317 0.7661895 0.5122212 0.20750552
## 34   0.985087719  0.105600540 0.7343750 0.7660300 0.5004050 0.20704846
## 174  0.985087719  0.108164642 0.7384615 0.7665529 0.5050144 0.21098901
## 236  0.985087719  0.110728745 0.7424242 0.7670765 0.5095007 0.21491228
## 1030 0.984210526  0.109851552 0.7313433 0.7669173 0.4982606 0.21444201
## 1006 0.984210526  0.112415655 0.7352941 0.7674419 0.5027360 0.21834061
## 177  0.983333333  0.111538462 0.7246377 0.7672827 0.4919204 0.21786492
## 213  0.983333333  0.114102564 0.7285714 0.7678082 0.4963796 0.22173913
## 1071 0.982456140  0.113225371 0.7183099 0.7676491 0.4859589 0.22125813
## 567  0.982456140  0.115789474 0.7222222 0.7681756 0.4903978 0.22510823
## 1476 0.981578947  0.114912281 0.7123288 0.7680165 0.4803452 0.22462203
## 218  0.981578947  0.117476383 0.7162162 0.7685440 0.4847602 0.22844828
## 29   0.981578947  0.120040486 0.7200000 0.7690722 0.4890722 0.23225806
## 1287 0.980701754  0.119163293 0.7105263 0.7689133 0.4794397 0.23175966
## 1342 0.980701754  0.121727395 0.7142857 0.7694425 0.4837282 0.23554604
## 975  0.980701754  0.124291498 0.7179487 0.7699725 0.4879212 0.23931624
## 1087 0.980701754  0.126855601 0.7215190 0.7705031 0.4920221 0.24307036
## 804  0.980701754  0.129419703 0.7250000 0.7710345 0.4960345 0.24680851
## 807  0.980701754  0.131983806 0.7283951 0.7715666 0.4999617 0.25053079
## 925  0.980701754  0.134547908 0.7317073 0.7720994 0.5038068 0.25423729
## 1213 0.980701754  0.137112011 0.7349398 0.7726330 0.5075728 0.25792812
## 1214 0.980701754  0.139676113 0.7380952 0.7731674 0.5112626 0.26160338
## 374  0.979824561  0.138798920 0.7294118 0.7730104 0.5024221 0.26105263
## 688  0.979824561  0.141363023 0.7325581 0.7735457 0.5061038 0.26470588
## 857  0.978947368  0.140485830 0.7241379 0.7733888 0.4975267 0.26415094
## 126  0.978070175  0.139608637 0.7159091 0.7732316 0.4891407 0.26359833
## 275  0.977192982  0.138731444 0.7078652 0.7730743 0.4809394 0.26304802
## 1335 0.977192982  0.141295547 0.7111111 0.7736111 0.4847222 0.26666667
## 574  0.976315789  0.140418354 0.7032967 0.7734538 0.4767505 0.26611227
## 1432 0.975438596  0.139541161 0.6956522 0.7732962 0.4689484 0.26556017
## 535  0.974561404  0.138663968 0.6881720 0.7731385 0.4613105 0.26501035
## 1278 0.973684211  0.137786775 0.6808511 0.7729805 0.4538316 0.26446281
## 1088 0.973684211  0.140350877 0.6842105 0.7735192 0.4577297 0.26804124
## 216  0.972807018  0.139473684 0.6770833 0.7733612 0.4504446 0.26748971
## 196  0.971929825  0.138596491 0.6701031 0.7732031 0.4433062 0.26694045
## 1215 0.971929825  0.141160594 0.6734694 0.7737430 0.4472124 0.27049180
## 844  0.971929825  0.143724696 0.6767677 0.7742837 0.4510514 0.27402863
## 932  0.971929825  0.146288799 0.6800000 0.7748252 0.4548252 0.27755102
## 107  0.971052632  0.145411606 0.6732673 0.7746676 0.4479349 0.27698574
## 82   0.970175439  0.144534413 0.6666667 0.7745098 0.4411765 0.27642276
## 1216 0.970175439  0.147098516 0.6699029 0.7750526 0.4449555 0.27991886
## 608  0.970175439  0.149662618 0.6730769 0.7755961 0.4486730 0.28340081
## 441  0.970175439  0.152226721 0.6761905 0.7761404 0.4523308 0.28686869
## 306  0.970175439  0.154790823 0.6792453 0.7766854 0.4559307 0.29032258
## 305  0.970175439  0.157354926 0.6822430 0.7772312 0.4594742 0.29376258
## 945  0.969298246  0.156477733 0.6759259 0.7770745 0.4530005 0.29317269
## 1252 0.968421053  0.155600540 0.6697248 0.7769177 0.4466424 0.29258517
## 80   0.968421053  0.158164642 0.6727273 0.7774648 0.4501921 0.29600000
## 433  0.967543860  0.157287449 0.6666667 0.7773080 0.4439746 0.29540918
## 183  0.967543860  0.159851552 0.6696429 0.7778561 0.4474990 0.29880478
## 189  0.966666667  0.158974359 0.6637168 0.7776994 0.4414162 0.29821074
## 26   0.966666667  0.161538462 0.6666667 0.7782486 0.4449153 0.30158730
## 972  0.966666667  0.164102564 0.6695652 0.7787986 0.4483638 0.30495050
## 1281 0.965789474  0.163225371 0.6637931 0.7786421 0.4424353 0.30434783
## 601  0.965789474  0.165789474 0.6666667 0.7791932 0.4458599 0.30769231
## 1210 0.965789474  0.168353576 0.6694915 0.7797450 0.4492366 0.31102362
## 64   0.965789474  0.170917679 0.6722689 0.7802977 0.4525666 0.31434185
## 1058 0.965789474  0.173481781 0.6750000 0.7808511 0.4558511 0.31764706
## 774  0.964912281  0.172604588 0.6694215 0.7806955 0.4501170 0.31702544
## 267  0.964912281  0.175168691 0.6721311 0.7812500 0.4533811 0.32031250
## 260  0.964912281  0.177732794 0.6747967 0.7818053 0.4566020 0.32358674
## 73   0.964035088  0.176855601 0.6693548 0.7816501 0.4510049 0.32295720
## 1218 0.964035088  0.179419703 0.6720000 0.7822064 0.4542064 0.32621359
## 172  0.964035088  0.181983806 0.6746032 0.7827635 0.4573667 0.32945736
## 85   0.964035088  0.184547908 0.6771654 0.7833215 0.4604868 0.33268859
## 146  0.964035088  0.187112011 0.6796875 0.7838802 0.4635677 0.33590734
## 1269 0.963157895  0.186234818 0.6744186 0.7837259 0.4581445 0.33526012
## 1177 0.963157895  0.188798920 0.6769231 0.7842857 0.4612088 0.33846154
## 92   0.962280702  0.187921727 0.6717557 0.7841315 0.4558872 0.33781190
## 1090 0.962280702  0.190485830 0.6742424 0.7846924 0.4589348 0.34099617
## 713  0.961403509  0.189608637 0.6691729 0.7845383 0.4537112 0.34034417
## 865  0.960526316  0.188731444 0.6641791 0.7843840 0.4485631 0.33969466
## 967  0.960526316  0.191295547 0.6666667 0.7849462 0.4516129 0.34285714
## 931  0.960526316  0.193859649 0.6691176 0.7855093 0.4546270 0.34600760
## 1098 0.960526316  0.196423752 0.6715328 0.7860732 0.4576061 0.34914611
## 1492 0.960526316  0.198987854 0.6739130 0.7866379 0.4605510 0.35227273
## 28   0.960526316  0.201551957 0.6762590 0.7872035 0.4634624 0.35538752
## 847  0.960526316  0.204116059 0.6785714 0.7877698 0.4663412 0.35849057
## 1126 0.960526316  0.206680162 0.6808511 0.7883369 0.4691880 0.36158192
## 1093 0.960526316  0.209244265 0.6830986 0.7889049 0.4720035 0.36466165
## 534  0.959649123  0.208367072 0.6783217 0.7887527 0.4670744 0.36397749
## 200  0.958771930  0.207489879 0.6736111 0.7886003 0.4622114 0.36329588
## 316  0.957894737  0.206612686 0.6689655 0.7884477 0.4574132 0.36261682
## 690  0.957894737  0.209176788 0.6712329 0.7890173 0.4602502 0.36567164
## 1424 0.957894737  0.211740891 0.6734694 0.7895879 0.4630572 0.36871508
## 732  0.957894737  0.214304993 0.6756757 0.7901592 0.4658349 0.37174721
## 1089 0.957894737  0.216869096 0.6778523 0.7907314 0.4685837 0.37476809
## 1338 0.957894737  0.219433198 0.6800000 0.7913043 0.4713043 0.37777778
## 201  0.957894737  0.221997301 0.6821192 0.7918782 0.4739974 0.38077634
## 966  0.957894737  0.224561404 0.6842105 0.7924528 0.4766634 0.38376384
## 335  0.957017544  0.223684211 0.6797386 0.7923021 0.4720407 0.38305709
## 936  0.957017544  0.226248313 0.6818182 0.7928779 0.4746961 0.38602941
## 168  0.957017544  0.228812416 0.6838710 0.7934545 0.4773255 0.38899083
## 297  0.957017544  0.231376518 0.6858974 0.7940320 0.4799295 0.39194139
## 53   0.956140351  0.230499325 0.6815287 0.7938820 0.4754107 0.39122486
## 166  0.956140351  0.233063428 0.6835443 0.7944606 0.4780049 0.39416058
## 1460 0.955263158  0.232186235 0.6792453 0.7943107 0.4735560 0.39344262
## 392  0.954385965  0.231309042 0.6750000 0.7941606 0.4691606 0.39272727
## 762  0.954385965  0.233873144 0.6770186 0.7947407 0.4717593 0.39564428
## 1373 0.954385965  0.236437247 0.6790123 0.7953216 0.4743340 0.39855072
## 488  0.954385965  0.239001350 0.6809816 0.7959034 0.4768850 0.40144665
## 238  0.953508772  0.238124157 0.6768293 0.7957540 0.4725833 0.40072202
## 1012 0.952631579  0.237246964 0.6727273 0.7956044 0.4683317 0.40000000
## 1301 0.952631579  0.239811066 0.6746988 0.7961877 0.4708865 0.40287770
## 679  0.951754386  0.238933873 0.6706587 0.7960382 0.4666968 0.40215440
## 97   0.951754386  0.241497976 0.6726190 0.7966226 0.4692417 0.40501792
## 808  0.951754386  0.244062078 0.6745562 0.7972079 0.4717641 0.40787120
## 41   0.951754386  0.246626181 0.6764706 0.7977941 0.4742647 0.41071429
## 443  0.951754386  0.249190283 0.6783626 0.7983812 0.4767437 0.41354724
## 939  0.950877193  0.248313090 0.6744186 0.7982327 0.4726513 0.41281139
## 779  0.950000000  0.247435897 0.6705202 0.7980840 0.4686042 0.41207815
## 887  0.949122807  0.246558704 0.6666667 0.7979351 0.4646018 0.41134752
## 650  0.948245614  0.245681511 0.6628571 0.7977860 0.4606431 0.41061947
## 251  0.948245614  0.248245614 0.6647727 0.7983752 0.4631479 0.41342756
## 36   0.947368421  0.247368421 0.6610169 0.7982262 0.4592431 0.41269841
## 1506 0.946491228  0.246491228 0.6573034 0.7980769 0.4553803 0.41197183
## 1178 0.946491228  0.249055331 0.6592179 0.7986677 0.4578855 0.41476274
## 500  0.945614035  0.248178138 0.6555556 0.7985185 0.4540741 0.41403509
## 689  0.945614035  0.250742240 0.6574586 0.7991105 0.4565690 0.41681261
## 279  0.944736842  0.249865047 0.6538462 0.7989614 0.4528076 0.41608392
## 1226 0.943859649  0.248987854 0.6502732 0.7988122 0.4490854 0.41535777
## 137  0.943859649  0.251551957 0.6521739 0.7994056 0.4515796 0.41811847
## 1454 0.942982456  0.250674764 0.6486486 0.7992565 0.4479052 0.41739130
## 806  0.942982456  0.253238866 0.6505376 0.7998512 0.4503888 0.42013889
## 447  0.942982456  0.255802969 0.6524064 0.8004468 0.4528532 0.42287695
## 366  0.942982456  0.258367072 0.6542553 0.8010432 0.4552985 0.42560554
## 323  0.942105263  0.257489879 0.6507937 0.8008949 0.4516885 0.42487047
## 427  0.941228070  0.256612686 0.6473684 0.8007463 0.4481147 0.42413793
## 1292 0.941228070  0.259176788 0.6492147 0.8013443 0.4505589 0.42685026
## 965  0.941228070  0.261740891 0.6510417 0.8019432 0.4529849 0.42955326
## 1008 0.941228070  0.264304993 0.6528497 0.8025430 0.4553927 0.43224700
## 148  0.940350877  0.263427800 0.6494845 0.8023952 0.4518797 0.43150685
## 502  0.939473684  0.262550607 0.6461538 0.8022472 0.4484010 0.43076923
## 1324 0.938596491  0.261673414 0.6428571 0.8020990 0.4449561 0.43003413
## 1057 0.938596491  0.264237517 0.6446701 0.8027007 0.4473707 0.43270869
## 731  0.938596491  0.266801619 0.6464646 0.8033033 0.4497679 0.43537415
## 22   0.938596491  0.269365722 0.6482412 0.8039068 0.4521480 0.43803056
## 152  0.937719298  0.268488529 0.6450000 0.8037594 0.4487594 0.43728814
## 202  0.936842105  0.267611336 0.6417910 0.8036117 0.4454028 0.43654822
## 99   0.935964912  0.266734143 0.6386139 0.8034639 0.4420777 0.43581081
## 724  0.935964912  0.269298246 0.6403941 0.8040693 0.4444634 0.43844857
## 446  0.935964912  0.271862348 0.6421569 0.8046757 0.4468326 0.44107744
## 1500 0.935964912  0.274426451 0.6439024 0.8052830 0.4491855 0.44369748
## 232  0.935964912  0.276990553 0.6456311 0.8058912 0.4515223 0.44630872
## 1299 0.935964912  0.279554656 0.6473430 0.8065004 0.4538434 0.44891122
## 1199 0.935087719  0.278677463 0.6442308 0.8063540 0.4505848 0.44816054
## 1258 0.934210526  0.277800270 0.6411483 0.8062074 0.4473557 0.44741235
## 33   0.934210526  0.280364372 0.6428571 0.8068182 0.4496753 0.45000000
## 337  0.933333333  0.279487179 0.6398104 0.8066717 0.4464821 0.44925125
## 93   0.932456140  0.278609987 0.6367925 0.8065250 0.4433175 0.44850498
## 1003 0.931578947  0.277732794 0.6338028 0.8063781 0.4401809 0.44776119
## 1474 0.930701754  0.276855601 0.6308411 0.8062310 0.4370721 0.44701987
## 231  0.929824561  0.275978408 0.6279070 0.8060837 0.4339906 0.44628099
## 269  0.928947368  0.275101215 0.6250000 0.8059361 0.4309361 0.44554455
## 1191 0.928070175  0.274224022 0.6221198 0.8057883 0.4279081 0.44481054
## 658  0.927192982  0.273346829 0.6192661 0.8056402 0.4249063 0.44407895
## 222  0.927192982  0.275910931 0.6210046 0.8062548 0.4272593 0.44663383
## 1456 0.926315789  0.275033738 0.6181818 0.8061069 0.4242887 0.44590164
## 563  0.926315789  0.277597841 0.6199095 0.8067227 0.4266322 0.44844517
## 149  0.925438596  0.276720648 0.6171171 0.8065749 0.4236920 0.44771242
## 801  0.924561404  0.275843455 0.6143498 0.8064269 0.4207767 0.44698206
## 81   0.924561404  0.278407557 0.6160714 0.8070444 0.4231158 0.44951140
## 320  0.923684211  0.277530364 0.6133333 0.8068966 0.4202299 0.44878049
## 19   0.922807018  0.276653171 0.6106195 0.8067485 0.4173679 0.44805195
## 729  0.922807018  0.279217274 0.6123348 0.8073676 0.4197024 0.45056726
## 442  0.922807018  0.281781377 0.6140351 0.8079877 0.4220228 0.45307443
## 7    0.922807018  0.284345479 0.6157205 0.8086088 0.4243293 0.45557351
## 899  0.921929825  0.283468286 0.6130435 0.8084615 0.4215050 0.45483871
## 562  0.921929825  0.286032389 0.6147186 0.8090839 0.4238025 0.45732689
## 1    0.921929825  0.288596491 0.6163793 0.8097072 0.4260866 0.45980707
## 1370 0.921929825  0.291160594 0.6180258 0.8103315 0.4283573 0.46227929
## 31   0.921929825  0.293724696 0.6196581 0.8109568 0.4306149 0.46474359
## 76   0.921929825  0.296288799 0.6212766 0.8115830 0.4328596 0.46720000
## 1085 0.921052632  0.295411606 0.6186441 0.8114374 0.4300815 0.46645367
## 191  0.920175439  0.294534413 0.6160338 0.8112916 0.4273253 0.46570973
## 266  0.920175439  0.297098516 0.6176471 0.8119195 0.4295666 0.46815287
## 705  0.919298246  0.296221323 0.6150628 0.8117738 0.4268366 0.46740859
## 1521 0.918421053  0.295344130 0.6125000 0.8116279 0.4241279 0.46666667
## 872  0.917543860  0.294466937 0.6099585 0.8114818 0.4214403 0.46592710
## 1330 0.916666667  0.293589744 0.6074380 0.8113354 0.4187734 0.46518987
## 1377 0.915789474  0.292712551 0.6049383 0.8111888 0.4161271 0.46445498
## 824  0.914912281  0.291835358 0.6024590 0.8110420 0.4135010 0.46372240
## 1328 0.914035088  0.290958165 0.6000000 0.8108949 0.4108949 0.46299213
## 66   0.914035088  0.293522267 0.6016260 0.8115265 0.4131525 0.46540881
## 194  0.913157895  0.292645074 0.5991903 0.8113796 0.4105699 0.46467818
## 1134 0.912280702  0.291767881 0.5967742 0.8112324 0.4080066 0.46394984
## 969  0.912280702  0.294331984 0.5983936 0.8118657 0.4102593 0.46635368
## 181  0.911403509  0.293454791 0.5960000 0.8117188 0.4077187 0.46562500
## 1010 0.910526316  0.292577598 0.5936255 0.8115715 0.4051970 0.46489860
## 905  0.909649123  0.291700405 0.5912698 0.8114241 0.4026939 0.46417445
## 291  0.908771930  0.290823212 0.5889328 0.8112764 0.4002092 0.46345257
## 105  0.907894737  0.289946019 0.5866142 0.8111285 0.3977427 0.46273292
## 1390 0.907017544  0.289068826 0.5843137 0.8109804 0.3952941 0.46201550
## 1170 0.907017544  0.291632928 0.5859375 0.8116170 0.3975545 0.46439628
## 1173 0.907017544  0.294197031 0.5875486 0.8122545 0.3998032 0.46676971
## 1073 0.906140351  0.293319838 0.5852713 0.8121069 0.3973782 0.46604938
## 361  0.906140351  0.295883941 0.5868726 0.8127459 0.3996185 0.46841294
## 118  0.906140351  0.298448043 0.5884615 0.8133858 0.4018474 0.47076923
## 1181 0.905263158  0.297570850 0.5862069 0.8132388 0.3994457 0.47004608
## 1096 0.905263158  0.300134953 0.5877863 0.8138801 0.4016664 0.47239264
## 501  0.904385965  0.299257760 0.5855513 0.8137332 0.3992846 0.47166922
## 223  0.903508772  0.298380567 0.5833333 0.8135861 0.3969194 0.47094801
## 77   0.902631579  0.297503374 0.5811321 0.8134387 0.3945708 0.47022901
## 135  0.902631579  0.300067476 0.5827068 0.8140823 0.3967890 0.47256098
## 250  0.902631579  0.302631579 0.5842697 0.8147268 0.3989965 0.47488584
## 848  0.902631579  0.305195682 0.5858209 0.8153724 0.4011933 0.47720365
## 483  0.902631579  0.307759784 0.5873606 0.8160190 0.4033796 0.47951442
## 346  0.901754386  0.306882591 0.5851852 0.8158730 0.4010582 0.47878788
## 1348 0.900877193  0.306005398 0.5830258 0.8157268 0.3987526 0.47806354
## 94   0.900000000  0.305128205 0.5808824 0.8155803 0.3964626 0.47734139
## 1343 0.900000000  0.307692308 0.5824176 0.8162291 0.3986467 0.47963801
## 1011 0.899122807  0.306815115 0.5802920 0.8160828 0.3963748 0.47891566
## 423  0.898245614  0.305937922 0.5781818 0.8159363 0.3941181 0.47819549
## 360  0.898245614  0.308502024 0.5797101 0.8165869 0.3962971 0.48048048
## 859  0.897368421  0.307624831 0.5776173 0.8164405 0.3940579 0.47976012
## 108  0.897368421  0.310188934 0.5791367 0.8170927 0.3962293 0.48203593
## 1481 0.896491228  0.309311741 0.5770609 0.8169464 0.3940074 0.48131540
## 1174 0.896491228  0.311875843 0.5785714 0.8176000 0.3961714 0.48358209
## 309  0.896491228  0.314439946 0.5800712 0.8182546 0.3983258 0.48584203
## 703  0.895614035  0.313562753 0.5780142 0.8181090 0.3961232 0.48511905
## 127  0.894736842  0.312685560 0.5759717 0.8179631 0.3939348 0.48439822
## 1297 0.894736842  0.315249663 0.5774648 0.8186196 0.3960844 0.48664688
## 886  0.893859649  0.314372470 0.5754386 0.8184739 0.3939125 0.48592593
## 417  0.892982456  0.313495277 0.5734266 0.8183280 0.3917545 0.48520710
## 956  0.892105263  0.312618084 0.5714286 0.8181818 0.3896104 0.48449040
## 768  0.891228070  0.311740891 0.5694444 0.8180354 0.3874799 0.48377581
## 851  0.891228070  0.314304993 0.5709343 0.8186946 0.3896289 0.48600884
## 798  0.890350877  0.313427800 0.5689655 0.8185484 0.3875139 0.48529412
## 1013 0.889473684  0.312550607 0.5670103 0.8184019 0.3854122 0.48458150
## 381  0.888596491  0.311673414 0.5650685 0.8182553 0.3833237 0.48387097
## 764  0.888596491  0.314237517 0.5665529 0.8189167 0.3854696 0.48609078
## 620  0.887719298  0.313360324 0.5646259 0.8187702 0.3833961 0.48538012
## 1528 0.886842105  0.312483131 0.5627119 0.8186235 0.3813353 0.48467153
## 986  0.885964912  0.311605938 0.5608108 0.8184765 0.3792873 0.48396501
## 618  0.885087719  0.310728745 0.5589226 0.8183293 0.3772518 0.48326055
## 284  0.884210526  0.309851552 0.5570470 0.8181818 0.3752288 0.48255814
## 853  0.884210526  0.312415655 0.5585284 0.8188465 0.3773749 0.48476052
## 570  0.884210526  0.314979757 0.5600000 0.8195122 0.3795122 0.48695652
## 156  0.883333333  0.314102564 0.5581395 0.8193653 0.3775049 0.48625181
## 505  0.882456140  0.313225371 0.5562914 0.8192182 0.3755096 0.48554913
## 1238 0.881578947  0.312348178 0.5544554 0.8190709 0.3735264 0.48484848
## 693  0.881578947  0.314912281 0.5559211 0.8197390 0.3756600 0.48703170
## 120  0.880701754  0.314035088 0.5540984 0.8195918 0.3736902 0.48633094
## 628  0.879824561  0.313157895 0.5522876 0.8194444 0.3717320 0.48563218
## 522  0.878947368  0.312280702 0.5504886 0.8192968 0.3697854 0.48493544
## 1498 0.878947368  0.314844804 0.5519481 0.8199673 0.3719153 0.48710602
## 818  0.878070175  0.313967611 0.5501618 0.8198198 0.3699816 0.48640916
## 57   0.878070175  0.316531714 0.5516129 0.8204918 0.3721047 0.48857143
## 188  0.877192982  0.315654521 0.5498392 0.8203445 0.3701838 0.48787447
## 564  0.877192982  0.318218623 0.5512821 0.8210181 0.3723001 0.49002849
## 254  0.877192982  0.320782726 0.5527157 0.8216927 0.3744083 0.49217639
## 1379 0.876315789  0.319905533 0.5509554 0.8215461 0.3725015 0.49147727
## 849  0.876315789  0.322469636 0.5523810 0.8222222 0.3746032 0.49361702
## 281  0.875438596  0.321592443 0.5506329 0.8220758 0.3727087 0.49291785
## 288  0.874561404  0.320715250 0.5488959 0.8219291 0.3708250 0.49222065
## 229  0.874561404  0.323279352 0.5503145 0.8226073 0.3729217 0.49435028
## 190  0.873684211  0.322402159 0.5485893 0.8224608 0.3710501 0.49365303
## 929  0.873684211  0.324966262 0.5500000 0.8231405 0.3731405 0.49577465
## 364  0.873684211  0.327530364 0.5514019 0.8238213 0.3752232 0.49789030
## 651  0.872807018  0.326653171 0.5496894 0.8236755 0.3733649 0.49719101
## 1113 0.871929825  0.325775978 0.5479876 0.8235294 0.3715170 0.49649369
## 298  0.871929825  0.328340081 0.5493827 0.8242123 0.3735950 0.49859944
## 566  0.871929825  0.330904184 0.5507692 0.8248963 0.3756655 0.50069930
## 1266 0.871052632  0.330026991 0.5490798 0.8247508 0.3738306 0.50000000
## 457  0.870175439  0.329149798 0.5474006 0.8246052 0.3720058 0.49930265
## 258  0.869298246  0.328272605 0.5457317 0.8244592 0.3701909 0.49860724
## 1056 0.869298246  0.330836707 0.5471125 0.8251457 0.3722582 0.50069541
## 123  0.868421053  0.329959514 0.5454545 0.8250000 0.3704545 0.50000000
## 199  0.867543860  0.329082321 0.5438066 0.8248540 0.3686607 0.49930652
## 765  0.866666667  0.328205128 0.5421687 0.8247078 0.3668765 0.49861496
## 1060 0.865789474  0.327327935 0.5405405 0.8245614 0.3651019 0.49792531
## 775  0.864912281  0.326450742 0.5389222 0.8244147 0.3633369 0.49723757
## 1376 0.864035088  0.325573549 0.5373134 0.8242678 0.3615812 0.49655172
## 833  0.863157895  0.324696356 0.5357143 0.8241206 0.3598349 0.49586777
## 485  0.863157895  0.327260459 0.5370920 0.8248114 0.3619034 0.49793673
## 1416 0.863157895  0.329824561 0.5384615 0.8255034 0.3639649 0.50000000
## 856  0.862280702  0.328947368 0.5368732 0.8253568 0.3622300 0.49931413
## 805  0.862280702  0.331511471 0.5382353 0.8260504 0.3642857 0.50136986
## 1499 0.862280702  0.334075574 0.5395894 0.8267452 0.3663346 0.50341997
## 1516 0.861403509  0.333198381 0.5380117 0.8265993 0.3646110 0.50273224
## 365  0.861403509  0.335762483 0.5393586 0.8272957 0.3666543 0.50477490
## 416  0.860526316  0.334885290 0.5377907 0.8271501 0.3649408 0.50408719
## 1493 0.860526316  0.337449393 0.5391304 0.8278481 0.3669785 0.50612245
## 617  0.859649123  0.336572200 0.5375723 0.8277027 0.3652750 0.50543478
## 727  0.859649123  0.339136302 0.5389049 0.8284024 0.3673073 0.50746269
## 111  0.858771930  0.338259109 0.5373563 0.8282572 0.3656135 0.50677507
## 1171 0.858771930  0.340823212 0.5386819 0.8289585 0.3676405 0.50879567
## 1251 0.858771930  0.343387314 0.5400000 0.8296610 0.3696610 0.51081081
## 1042 0.857894737  0.342510121 0.5384615 0.8295165 0.3679781 0.51012146
## 217  0.857894737  0.345074224 0.5397727 0.8302207 0.3699934 0.51212938
## 640  0.857894737  0.347638327 0.5410765 0.8309261 0.3720026 0.51413190
## 106  0.857017544  0.346761134 0.5395480 0.8307823 0.3703303 0.51344086
## 1368 0.856140351  0.345883941 0.5380282 0.8306383 0.3686665 0.51275168
## 109  0.855263158  0.345006748 0.5365169 0.8304940 0.3670109 0.51206434
## 370  0.855263158  0.347570850 0.5378151 0.8312020 0.3690172 0.51405622
## 875  0.854385965  0.346693657 0.5363128 0.8310580 0.3673709 0.51336898
## 164  0.854385965  0.349257760 0.5376045 0.8317677 0.3693722 0.51535381
## 1477 0.853508772  0.348380567 0.5361111 0.8316239 0.3677350 0.51466667
## 227  0.852631579  0.347503374 0.5346260 0.8314799 0.3661059 0.51398136
## 1133 0.851754386  0.346626181 0.5331492 0.8313356 0.3644848 0.51329787
## 524  0.850877193  0.345748988 0.5316804 0.8311911 0.3628715 0.51261620
## 659  0.850000000  0.344871795 0.5302198 0.8310463 0.3612661 0.51193634
## 542  0.849122807  0.343994602 0.5287671 0.8309013 0.3596684 0.51125828
## 160  0.848245614  0.343117409 0.5273224 0.8307560 0.3580784 0.51058201
## 694  0.848245614  0.345681511 0.5286104 0.8314703 0.3600807 0.51254954
## 968  0.848245614  0.348245614 0.5298913 0.8321859 0.3620772 0.51451187
## 96   0.848245614  0.350809717 0.5311653 0.8329027 0.3640680 0.51646904
## 747  0.847368421  0.349932524 0.5297297 0.8327586 0.3624884 0.51578947
## 1055 0.847368421  0.352496626 0.5309973 0.8334771 0.3644744 0.51773982
## 1048 0.847368421  0.355060729 0.5322581 0.8341969 0.3664550 0.51968504
## 208  0.846491228  0.354183536 0.5308311 0.8340536 0.3648847 0.51900393
## 158  0.846491228  0.356747638 0.5320856 0.8347751 0.3668606 0.52094241
## 811  0.846491228  0.359311741 0.5333333 0.8354978 0.3688312 0.52287582
## 301  0.846491228  0.361875843 0.5345745 0.8362218 0.3707963 0.52480418
## 1401 0.845614035  0.360998650 0.5331565 0.8360798 0.3692363 0.52411995
## 113  0.844736842  0.360121457 0.5317460 0.8359375 0.3676835 0.52343750
## 1494 0.844736842  0.362685560 0.5329815 0.8366638 0.3696453 0.52535761
## 402  0.843859649  0.361808367 0.5315789 0.8365217 0.3681007 0.52467532
## 686  0.843859649  0.364372470 0.5328084 0.8372498 0.3700582 0.52658885
## 1101 0.842982456  0.363495277 0.5314136 0.8371080 0.3685216 0.52590674
## 884  0.842982456  0.366059379 0.5326371 0.8378378 0.3704749 0.52781371
## 560  0.842982456  0.368623482 0.5338542 0.8385689 0.3724231 0.52971576
## 265  0.842982456  0.371187584 0.5350649 0.8393013 0.3743662 0.53161290
## 371  0.842982456  0.373751687 0.5362694 0.8400350 0.3763044 0.53350515
## 180  0.842105263  0.372874494 0.5348837 0.8398950 0.3747787 0.53281853
## 56   0.841228070  0.371997301 0.5335052 0.8397548 0.3732600 0.53213368
## 783  0.840350877  0.371120108 0.5321337 0.8396144 0.3717480 0.53145058
## 1161 0.839473684  0.370242915 0.5307692 0.8394737 0.3702429 0.53076923
## 809  0.839473684  0.372807018 0.5319693 0.8402107 0.3721800 0.53265045
## 759  0.838596491  0.371929825 0.5306122 0.8400703 0.3706825 0.53196931
## 1242 0.837719298  0.371052632 0.5292621 0.8399296 0.3691917 0.53128991
## 211  0.837719298  0.373616734 0.5304569 0.8406690 0.3711259 0.53316327
## 758  0.836842105  0.372739541 0.5291139 0.8405286 0.3696426 0.53248408
## 624  0.835964912  0.371862348 0.5277778 0.8403880 0.3681658 0.53180662
## 368  0.835964912  0.374426451 0.5289673 0.8411297 0.3700970 0.53367217
## 504  0.835087719  0.373549258 0.5276382 0.8409894 0.3686276 0.53299492
## 133  0.834210526  0.372672065 0.5263158 0.8408488 0.3671646 0.53231939
## 622  0.833333333  0.371794872 0.5250000 0.8407080 0.3657080 0.53164557
## 927  0.833333333  0.374358974 0.5261845 0.8414526 0.3676372 0.53350190
## 1423 0.833333333  0.376923077 0.5273632 0.8421986 0.3695618 0.53535354
## 459  0.832456140  0.376045884 0.5260546 0.8420586 0.3681132 0.53467844
## 753  0.831578947  0.375168691 0.5247525 0.8419183 0.3666708 0.53400504
## 506  0.830701754  0.374291498 0.5234568 0.8417778 0.3652346 0.53333333
## 810  0.830701754  0.376855601 0.5246305 0.8425267 0.3671572 0.53517588
## 1451 0.829824561  0.375978408 0.5233415 0.8423865 0.3657280 0.53450439
## 197  0.829824561  0.378542510 0.5245098 0.8431373 0.3676471 0.53634085
## 90   0.828947368  0.377665317 0.5232274 0.8429973 0.3662247 0.53566959
## 894  0.828070175  0.376788124 0.5219512 0.8428571 0.3648084 0.53500000
## 1362 0.827192982  0.375910931 0.5206813 0.8427167 0.3633980 0.53433208
## 681  0.826315789  0.375033738 0.5194175 0.8425760 0.3619935 0.53366584
## 363  0.826315789  0.377597841 0.5205811 0.8433303 0.3639115 0.53549191
## 1337 0.826315789  0.380161943 0.5217391 0.8440860 0.3658252 0.53731343
## 993  0.825438596  0.379284750 0.5204819 0.8439462 0.3644281 0.53664596
## 234  0.824561404  0.378407557 0.5192308 0.8438061 0.3630369 0.53598015
## 803  0.824561404  0.380971660 0.5203837 0.8445642 0.3649479 0.53779430
## 115  0.823684211  0.380094467 0.5191388 0.8444245 0.3635632 0.53712871
## 256  0.823684211  0.382658570 0.5202864 0.8451845 0.3654709 0.53893696
## 1015 0.822807018  0.381781377 0.5190476 0.8450450 0.3640927 0.53827160
## 1271 0.821929825  0.380904184 0.5178147 0.8449053 0.3627200 0.53760789
## 72   0.821052632  0.380026991 0.5165877 0.8447653 0.3613530 0.53694581
## 45   0.821052632  0.382591093 0.5177305 0.8455285 0.3632590 0.53874539
## 1418 0.821052632  0.385155196 0.5188679 0.8462929 0.3651609 0.54054054
## 1412 0.821052632  0.387719298 0.5200000 0.8470588 0.3670588 0.54233129
## 521  0.820175439  0.386842105 0.5187793 0.8469203 0.3656996 0.54166667
## 515  0.819298246  0.385964912 0.5175644 0.8467815 0.3643459 0.54100367
## 319  0.818421053  0.385087719 0.5163551 0.8466425 0.3629976 0.54034230
## 670  0.817543860  0.384210526 0.5151515 0.8465032 0.3616547 0.53968254
## 1052 0.817543860  0.386774629 0.5162791 0.8472727 0.3635518 0.54146341
## 766  0.816666667  0.385897436 0.5150812 0.8471338 0.3622150 0.54080390
## 1334 0.816666667  0.388461538 0.5162037 0.8479053 0.3641090 0.54257908
## 1265 0.815789474  0.387584345 0.5150115 0.8477666 0.3627782 0.54191981
## 404  0.814912281  0.386707152 0.5138249 0.8476277 0.3614526 0.54126214
## 685  0.814912281  0.389271255 0.5149425 0.8484018 0.3633444 0.54303030
## 674  0.814035088  0.388394062 0.5137615 0.8482633 0.3620247 0.54237288
## 233  0.814035088  0.390958165 0.5148741 0.8490393 0.3639135 0.54413543
## 1130 0.813157895  0.390080972 0.5136986 0.8489011 0.3625997 0.54347826
## 75   0.813157895  0.392645074 0.5148064 0.8496792 0.3644856 0.54523522
## 70   0.812280702  0.391767881 0.5136364 0.8495413 0.3631776 0.54457831
## 514  0.811403509  0.390890688 0.5124717 0.8494031 0.3618748 0.54392298
## 338  0.810526316  0.390013495 0.5113122 0.8492647 0.3605769 0.54326923
## 322  0.809649123  0.389136302 0.5101580 0.8491260 0.3592840 0.54261705
## 1099 0.809649123  0.391700405 0.5112613 0.8499079 0.3611692 0.54436451
## 38   0.808771930  0.390823212 0.5101124 0.8497696 0.3598819 0.54371257
## 405  0.807894737  0.389946019 0.5089686 0.8496310 0.3585996 0.54306220
## 426  0.807017544  0.389068826 0.5078300 0.8494922 0.3573221 0.54241338
## 916  0.806140351  0.388191633 0.5066964 0.8493530 0.3560495 0.54176611
## 393  0.805263158  0.387314440 0.5055679 0.8492137 0.3547816 0.54112038
## 1397 0.804385965  0.386437247 0.5044444 0.8490741 0.3535185 0.54047619
## 1247 0.803508772  0.385560054 0.5033259 0.8489342 0.3522601 0.53983353
## 611  0.803508772  0.388124157 0.5044248 0.8497217 0.3541465 0.54156770
## 642  0.803508772  0.390688259 0.5055188 0.8505107 0.3560294 0.54329775
## 985  0.802631579  0.389811066 0.5044053 0.8503717 0.3547770 0.54265403
## 369  0.802631579  0.392375169 0.5054945 0.8511628 0.3566573 0.54437870
## 845  0.802631579  0.394939271 0.5065789 0.8519553 0.3585343 0.54609929
## 203  0.801754386  0.394062078 0.5054705 0.8518173 0.3572878 0.54545455
## 1483 0.800877193  0.393184885 0.5043668 0.8516791 0.3560459 0.54481132
## 1490 0.800000000  0.392307692 0.5032680 0.8515406 0.3548086 0.54416961
## 780  0.799122807  0.391430499 0.5021739 0.8514019 0.3535758 0.54352941
## 995  0.798245614  0.390553306 0.5010846 0.8512629 0.3523475 0.54289072
## 228  0.797368421  0.389676113 0.5000000 0.8511236 0.3511236 0.54225352
## 125  0.797368421  0.392240216 0.5010799 0.8519213 0.3530012 0.54396249
## 1459 0.796491228  0.391363023 0.5000000 0.8517824 0.3517824 0.54332553
## 375  0.795614035  0.390485830 0.4989247 0.8516432 0.3505679 0.54269006
## 1336 0.795614035  0.393049933 0.5000000 0.8524436 0.3524436 0.54439252
## 518  0.795614035  0.395614035 0.5010707 0.8532455 0.3543162 0.54609102
## 1121 0.794736842  0.394736842 0.5000000 0.8531073 0.3531073 0.54545455
## 132  0.793859649  0.393859649 0.4989339 0.8529689 0.3519028 0.54481956
## 16   0.793859649  0.396423752 0.5000000 0.8537736 0.3537736 0.54651163
## 600  0.793859649  0.398987854 0.5010616 0.8545798 0.3556414 0.54819977
## 46   0.792982456  0.398110661 0.5000000 0.8544423 0.3544423 0.54756381
## 1223 0.792105263  0.397233468 0.4989429 0.8543046 0.3532476 0.54692932
## 561  0.792105263  0.399797571 0.5000000 0.8551136 0.3551136 0.54861111
## 815  0.792105263  0.402361673 0.5010526 0.8559242 0.3569768 0.55028902
## 869  0.791228070  0.401484480 0.5000000 0.8557875 0.3557875 0.54965358
## 604  0.791228070  0.404048583 0.5010482 0.8566002 0.3576484 0.55132641
## 578  0.790350877  0.403171390 0.5000000 0.8564639 0.3564639 0.55069124
## 973  0.790350877  0.405735493 0.5010438 0.8572788 0.3583226 0.55235903
## 1077 0.789473684  0.404858300 0.5000000 0.8571429 0.3571429 0.55172414
## 559  0.789473684  0.407422402 0.5010395 0.8579600 0.3589995 0.55338691
## 781  0.788596491  0.406545209 0.5000000 0.8578244 0.3578244 0.55275229
## 1045 0.787719298  0.405668016 0.4989648 0.8576886 0.3566534 0.55211913
## 1382 0.786842105  0.404790823 0.4979339 0.8575526 0.3554865 0.55148741
## 508  0.785964912  0.403913630 0.4969072 0.8574163 0.3543235 0.55085714
## 866  0.785087719  0.403036437 0.4958848 0.8572797 0.3531645 0.55022831
## 1186 0.784210526  0.402159244 0.4948665 0.8571429 0.3520094 0.54960091
## 1372 0.784210526  0.404723347 0.4959016 0.8579655 0.3538671 0.55125285
## 224  0.783333333  0.403846154 0.4948875 0.8578290 0.3527165 0.55062571
## 541  0.782456140  0.402968961 0.4938776 0.8576923 0.3515699 0.55000000
## 748  0.781578947  0.402091768 0.4928717 0.8575553 0.3504270 0.54937571
## 1366 0.780701754  0.401214575 0.4918699 0.8574181 0.3492880 0.54875283
## 1017 0.779824561  0.400337382 0.4908722 0.8572806 0.3481528 0.54813137
## 746  0.778947368  0.399460189 0.4898785 0.8571429 0.3470214 0.54751131
## 391  0.778070175  0.398582996 0.4888889 0.8570048 0.3458937 0.54689266
## 424  0.777192982  0.397705803 0.4879032 0.8568665 0.3447698 0.54627540
## 1461 0.776315789  0.396828610 0.4869215 0.8567280 0.3436495 0.54565953
## 79   0.776315789  0.399392713 0.4879518 0.8575581 0.3455099 0.54729730
## 528  0.775438596  0.398515520 0.4869739 0.8574200 0.3443939 0.54668166
## 1268 0.774561404  0.397638327 0.4860000 0.8572816 0.3432816 0.54606742
## 304  0.774561404  0.400202429 0.4870259 0.8581147 0.3451406 0.54769921
## 1375 0.773684211  0.399325236 0.4860558 0.8579767 0.3440324 0.54708520
## 576  0.772807018  0.398448043 0.4850895 0.8578384 0.3429278 0.54647256
## 1384 0.771929825  0.397570850 0.4841270 0.8576998 0.3418268 0.54586130
## 1522 0.771052632  0.396693657 0.4831683 0.8575610 0.3407293 0.54525140
## 596  0.770175439  0.395816464 0.4822134 0.8574219 0.3396353 0.54464286
## 1075 0.769298246  0.394939271 0.4812623 0.8572825 0.3385448 0.54403567
## 1004 0.768421053  0.394062078 0.4803150 0.8571429 0.3374578 0.54342984
## 179  0.767543860  0.393184885 0.4793713 0.8570029 0.3363743 0.54282536
## 1443 0.766666667  0.392307692 0.4784314 0.8568627 0.3352941 0.54222222
## 252  0.765789474  0.391430499 0.4774951 0.8567223 0.3342174 0.54162042
## 842  0.764912281  0.390553306 0.4765625 0.8565815 0.3331440 0.54101996
## 276  0.764035088  0.389676113 0.4756335 0.8564405 0.3320740 0.54042082
## 163  0.763157895  0.388798920 0.4747082 0.8562992 0.3310074 0.53982301
## 308  0.762280702  0.387921727 0.4737864 0.8561576 0.3299440 0.53922652
## 307  0.762280702  0.390485830 0.4748062 0.8570020 0.3318082 0.54083885
## 1508 0.761403509  0.389608637 0.4738878 0.8568608 0.3307486 0.54024256
## 603  0.761403509  0.392172740 0.4749035 0.8577075 0.3326110 0.54185022
## 569  0.761403509  0.394736842 0.4759152 0.8585559 0.3344711 0.54345435
## 1137 0.760526316  0.393859649 0.4750000 0.8584158 0.3334158 0.54285714
## 730  0.760526316  0.396423752 0.4760077 0.8592666 0.3352743 0.54445664
## 1221 0.759649123  0.395546559 0.4750958 0.8591270 0.3342228 0.54385965
## 453  0.758771930  0.394669366 0.4741874 0.8589871 0.3331745 0.54326396
## 325  0.757894737  0.393792173 0.4732824 0.8588469 0.3321294 0.54266958
## 246  0.757017544  0.392914980 0.4723810 0.8587065 0.3310874 0.54207650
## 517  0.756140351  0.392037787 0.4714829 0.8585657 0.3300486 0.54148472
## 749  0.755263158  0.391160594 0.4705882 0.8584247 0.3290130 0.54089422
## 259  0.755263158  0.393724696 0.4715909 0.8592814 0.3308723 0.54248366
## 777  0.754385965  0.392847503 0.4706994 0.8591409 0.3298403 0.54189336
## 100  0.754385965  0.395411606 0.4716981 0.8600000 0.3316981 0.54347826
## 408  0.753508772  0.394534413 0.4708098 0.8598599 0.3306697 0.54288817
## 61   0.753508772  0.397098516 0.4718045 0.8607214 0.3325260 0.54446855
## 971  0.753508772  0.399662618 0.4727955 0.8615848 0.3343803 0.54604550
## 171  0.752631579  0.398785425 0.4719101 0.8614458 0.3333559 0.54545455
## 599  0.751754386  0.397908232 0.4710280 0.8613065 0.3323346 0.54486486
## 793  0.750877193  0.397031039 0.4701493 0.8611670 0.3313163 0.54427646
## 1239 0.750000000  0.396153846 0.4692737 0.8610272 0.3303009 0.54368932
## 1094 0.750000000  0.398717949 0.4702602 0.8618952 0.3321554 0.54525862
## 2    0.749122807  0.397840756 0.4693878 0.8617558 0.3311436 0.54467169
## 1095 0.749122807  0.400404858 0.4703704 0.8626263 0.3329966 0.54623656
## 39   0.748245614  0.399527665 0.4695009 0.8624874 0.3319883 0.54564984
## 1359 0.747368421  0.398650472 0.4686347 0.8623482 0.3309829 0.54506438
## 129  0.747368421  0.401214575 0.4696133 0.8632219 0.3328351 0.54662379
## 142  0.746491228  0.400337382 0.4687500 0.8630832 0.3318332 0.54603854
## 401  0.745614035  0.399460189 0.4678899 0.8629442 0.3308341 0.54545455
## 717  0.744736842  0.398582996 0.4670330 0.8628049 0.3298378 0.54487179
## 492  0.743859649  0.397705803 0.4661792 0.8626653 0.3288445 0.54429029
## 1031 0.742982456  0.396828610 0.4653285 0.8625255 0.3278539 0.54371002
## 382  0.742105263  0.395951417 0.4644809 0.8623853 0.3268662 0.54313099
## 1302 0.742105263  0.398515520 0.4654545 0.8632653 0.3287199 0.54468085
## 431  0.741228070  0.397638327 0.4646098 0.8631256 0.3277354 0.54410202
## 723  0.741228070  0.400202429 0.4655797 0.8640082 0.3295879 0.54564756
## 444  0.741228070  0.402766532 0.4665461 0.8648925 0.3314386 0.54718982
## 1235 0.740350877  0.401889339 0.4657040 0.8647541 0.3304581 0.54661017
## 520  0.740350877  0.404453441 0.4666667 0.8656410 0.3323077 0.54814815
## 1341 0.740350877  0.407017544 0.4676259 0.8665298 0.3341557 0.54968288
## 551  0.739473684  0.406140351 0.4667864 0.8663926 0.3331790 0.54910243
## 452  0.738596491  0.405263158 0.4659498 0.8662551 0.3322050 0.54852321
## 314  0.737719298  0.404385965 0.4651163 0.8661174 0.3312337 0.54794521
## 933  0.737719298  0.406950067 0.4660714 0.8670103 0.3330817 0.54947368
## 885  0.737719298  0.409514170 0.4670232 0.8679051 0.3349282 0.55099895
## 116  0.736842105  0.408636977 0.4661922 0.8677686 0.3339608 0.55042017
## 212  0.736842105  0.411201080 0.4671403 0.8686660 0.3358063 0.55194124
## 1391 0.735964912  0.410323887 0.4663121 0.8685300 0.3348421 0.55136268
## 704  0.735087719  0.409446694 0.4654867 0.8683938 0.3338805 0.55078534
## 493  0.734210526  0.408569501 0.4646643 0.8682573 0.3329216 0.55020921
## 1029 0.733333333  0.407692308 0.4638448 0.8681205 0.3319653 0.54963427
## 1237 0.732456140  0.406815115 0.4630282 0.8679834 0.3310115 0.54906054
## 348  0.731578947  0.405937922 0.4622144 0.8678460 0.3300604 0.54848801
## 1187 0.730701754  0.405060729 0.4614035 0.8677083 0.3291118 0.54791667
## 1091 0.730701754  0.407624831 0.4623468 0.8686131 0.3309599 0.54942768
## 18   0.730701754  0.410188934 0.4632867 0.8695198 0.3328065 0.55093555
## 1275 0.729824561  0.409311741 0.4624782 0.8693835 0.3318617 0.55036345
## 154  0.728947368  0.408434548 0.4616725 0.8692469 0.3309193 0.54979253
## 345  0.728070175  0.407557355 0.4608696 0.8691099 0.3299795 0.54922280
## 1037 0.727192982  0.406680162 0.4600694 0.8689727 0.3290422 0.54865424
## 1326 0.726315789  0.405802969 0.4592721 0.8688353 0.3281074 0.54808687
## 215  0.726315789  0.408367072 0.4602076 0.8697479 0.3299555 0.54958678
## 1135 0.725438596  0.407489879 0.4594128 0.8696109 0.3290237 0.54901961
## 769  0.724561404  0.406612686 0.4586207 0.8694737 0.3280944 0.54845361
## 841  0.723684211  0.405735493 0.4578313 0.8693361 0.3271675 0.54788877
## 119  0.723684211  0.408299595 0.4587629 0.8702532 0.3290161 0.54938272
## 1084 0.722807018  0.407422402 0.4579760 0.8701162 0.3280921 0.54881809
## 1515 0.721929825  0.406545209 0.4571918 0.8699789 0.3271706 0.54825462
## 221  0.721929825  0.409109312 0.4581197 0.8708995 0.3290191 0.54974359
## 1212 0.721929825  0.411673414 0.4590444 0.8718220 0.3308664 0.55122951
## 40   0.721052632  0.410796221 0.4582624 0.8716861 0.3299485 0.55066530
## 421  0.720175439  0.409919028 0.4574830 0.8715499 0.3290329 0.55010225
## 101  0.719298246  0.409041835 0.4567063 0.8714134 0.3281197 0.54954035
## 71   0.718421053  0.408164642 0.4559322 0.8712766 0.3272088 0.54897959
## 832  0.717543860  0.407287449 0.4551607 0.8711395 0.3263003 0.54841998
## 1078 0.716666667  0.406410256 0.4543919 0.8710021 0.3253940 0.54786151
## 295  0.716666667  0.408974359 0.4553120 0.8719317 0.3272437 0.54933876
## 1288 0.715789474  0.408097166 0.4545455 0.8717949 0.3263403 0.54878049
## 249  0.714912281  0.407219973 0.4537815 0.8716578 0.3254393 0.54822335
## 330  0.714035088  0.406342780 0.4530201 0.8715203 0.3245405 0.54766734
## 1155 0.713157895  0.405465587 0.4522613 0.8713826 0.3236439 0.54711246
## 359  0.713157895  0.408029690 0.4531773 0.8723176 0.3254949 0.54858300
## 263  0.712280702  0.407152497 0.4524207 0.8721805 0.3246012 0.54802831
## 1138 0.711403509  0.406275304 0.4516667 0.8720430 0.3237097 0.54747475
## 1146 0.710526316  0.405398111 0.4509151 0.8719053 0.3228204 0.54692230
## 445  0.710526316  0.407962213 0.4518272 0.8728448 0.3246721 0.54838710
## 874  0.709649123  0.407085020 0.4510779 0.8727077 0.3237856 0.54783484
## 69   0.709649123  0.409649123 0.4519868 0.8736501 0.3256369 0.54929577
## 1176 0.709649123  0.412213225 0.4528926 0.8745946 0.3274872 0.55075377
## 456  0.708771930  0.411336032 0.4521452 0.8744589 0.3266041 0.55020080
## 1194 0.707894737  0.410458839 0.4514003 0.8743229 0.3257232 0.54964895
## 829  0.707017544  0.409581646 0.4506579 0.8741866 0.3248444 0.54909820
## 287  0.706140351  0.408704453 0.4499179 0.8740499 0.3239678 0.54854855
## 785  0.705263158  0.407827260 0.4491803 0.8739130 0.3230934 0.54800000
## 867  0.704385965  0.406950067 0.4484452 0.8737758 0.3222210 0.54745255
## 1049 0.704385965  0.409514170 0.4493464 0.8747277 0.3240741 0.54890220
## 253  0.703508772  0.408636977 0.4486134 0.8745911 0.3232044 0.54835494
## 1107 0.702631579  0.407759784 0.4478827 0.8744541 0.3223369 0.54780876
## 919  0.701754386  0.406882591 0.4471545 0.8743169 0.3214714 0.54726368
## 1129 0.701754386  0.409446694 0.4480519 0.8752735 0.3233255 0.54870775
## 237  0.700877193  0.408569501 0.4473258 0.8751369 0.3224627 0.54816286
## 122  0.700000000  0.407692308 0.4466019 0.8750000 0.3216019 0.54761905
## 1347 0.699122807  0.406815115 0.4458805 0.8748628 0.3207432 0.54707631
## 342  0.698245614  0.405937922 0.4451613 0.8747253 0.3198866 0.54653465
## 198  0.697368421  0.405060729 0.4444444 0.8745875 0.3190319 0.54599407
## 270  0.696491228  0.404183536 0.4437299 0.8744493 0.3181792 0.54545455
## 739  0.695614035  0.403306343 0.4430177 0.8743109 0.3173286 0.54491609
## 390  0.694736842  0.402429150 0.4423077 0.8741722 0.3164799 0.54437870
## 1136 0.693859649  0.401551957 0.4416000 0.8740331 0.3156331 0.54384236
## 296  0.693859649  0.404116059 0.4424920 0.8750000 0.3174920 0.54527559
## 1402 0.692982456  0.403238866 0.4417863 0.8748616 0.3166479 0.54473943
## 264  0.692105263  0.402361673 0.4410828 0.8747228 0.3158056 0.54420432
## 902  0.691228070  0.401484480 0.4403816 0.8745838 0.3149654 0.54367026
## 63   0.690350877  0.400607287 0.4396825 0.8744444 0.3141270 0.54313725
## 1074 0.689473684  0.399730094 0.4389857 0.8743048 0.3132905 0.54260529
## 1478 0.688596491  0.398852901 0.4382911 0.8741648 0.3124559 0.54207436
## 1425 0.687719298  0.397975709 0.4375987 0.8740245 0.3116233 0.54154448
## 1259 0.686842105  0.397098516 0.4369085 0.8738839 0.3107924 0.54101562
## 1352 0.685964912  0.396221323 0.4362205 0.8737430 0.3099635 0.54048780
## 326  0.685087719  0.395344130 0.4355346 0.8736018 0.3091364 0.53996101
## 13   0.685087719  0.397908232 0.4364207 0.8745801 0.3110008 0.54138267
## 498  0.684210526  0.397031039 0.4357367 0.8744395 0.3101761 0.54085603
## 1464 0.683333333  0.396153846 0.4350548 0.8742985 0.3093533 0.54033042
## 893  0.682456140  0.395276653 0.4343750 0.8741573 0.3085323 0.53980583
## 1470 0.681578947  0.394399460 0.4336973 0.8740157 0.3077131 0.53928225
## 621  0.680701754  0.393522267 0.4330218 0.8738739 0.3068957 0.53875969
## 708  0.679824561  0.392645074 0.4323484 0.8737317 0.3060800 0.53823814
## 891  0.678947368  0.391767881 0.4316770 0.8735892 0.3052662 0.53771760
## 1256 0.678070175  0.390890688 0.4310078 0.8734463 0.3044541 0.53719807
## 980  0.677192982  0.390013495 0.4303406 0.8733032 0.3036437 0.53667954
## 299  0.677192982  0.392577598 0.4312210 0.8742922 0.3055132 0.53809065
## 1439 0.676315789  0.391700405 0.4305556 0.8741497 0.3047052 0.53757225
## 400  0.675438596  0.390823212 0.4298921 0.8740068 0.3038990 0.53705486
## 138  0.674561404  0.389946019 0.4292308 0.8738636 0.3030944 0.53653846
## 855  0.674561404  0.392510121 0.4301075 0.8748578 0.3049653 0.53794428
## 963  0.673684211  0.391632928 0.4294479 0.8747153 0.3041631 0.53742802
## 888  0.672807018  0.390755735 0.4287902 0.8745724 0.3033626 0.53691275
## 930  0.672807018  0.393319838 0.4296636 0.8755708 0.3052344 0.53831418
## 612  0.672807018  0.395883941 0.4305344 0.8765714 0.3071058 0.53971292
## 751  0.671929825  0.395006748 0.4298780 0.8764302 0.3063083 0.53919694
## 139  0.671052632  0.394129555 0.4292237 0.8762887 0.3055124 0.53868195
## 209  0.670175439  0.393252362 0.4285714 0.8761468 0.3047182 0.53816794
## 1430 0.669298246  0.392375169 0.4279211 0.8760046 0.3039257 0.53765491
## 1296 0.669298246  0.394939271 0.4287879 0.8770115 0.3057994 0.53904762
## 742  0.668421053  0.394062078 0.4281392 0.8768700 0.3050091 0.53853473
## 277  0.667543860  0.393184885 0.4274924 0.8767281 0.3042206 0.53802281
## 1254 0.666666667  0.392307692 0.4268477 0.8765859 0.3034336 0.53751187
## 889  0.665789474  0.391430499 0.4262048 0.8764434 0.3026482 0.53700190
## 771  0.664912281  0.390553306 0.4255639 0.8763006 0.3018645 0.53649289
## 609  0.664912281  0.393117409 0.4264264 0.8773148 0.3037412 0.53787879
## 1222 0.664035088  0.392240216 0.4257871 0.8771727 0.3029598 0.53736991
## 830  0.663157895  0.391363023 0.4251497 0.8770302 0.3021799 0.53686200
## 449  0.663157895  0.393927126 0.4260090 0.8780488 0.3040577 0.53824363
## 440  0.663157895  0.396491228 0.4268657 0.8790698 0.3059354 0.53962264
## 395  0.662280702  0.395614035 0.4262295 0.8789290 0.3051585 0.53911404
## 1169 0.662280702  0.398178138 0.4270833 0.8799534 0.3070367 0.54048964
## 407  0.661403509  0.397300945 0.4264487 0.8798133 0.3062620 0.53998119
## 1009 0.660526316  0.396423752 0.4258160 0.8796729 0.3054889 0.53947368
## 1526 0.659649123  0.395546559 0.4251852 0.8795322 0.3047173 0.53896714
## 1206 0.658771930  0.394669366 0.4245562 0.8793911 0.3039473 0.53846154
## 1033 0.657894737  0.393792173 0.4239291 0.8792497 0.3031788 0.53795689
## 373  0.657017544  0.392914980 0.4233038 0.8791080 0.3024118 0.53745318
## 643  0.657017544  0.395479082 0.4241532 0.8801410 0.3042942 0.53882133
## 913  0.656140351  0.394601889 0.4235294 0.8800000 0.3035294 0.53831776
## 239  0.655263158  0.393724696 0.4229075 0.8798587 0.3027661 0.53781513
## 1503 0.655263158  0.396288799 0.4237537 0.8808962 0.3046499 0.53917910
## 490  0.654385965  0.395411606 0.4231332 0.8807556 0.3038888 0.53867661
## 954  0.653508772  0.394534413 0.4225146 0.8806147 0.3031293 0.53817505
## 1306 0.652631579  0.393657220 0.4218978 0.8804734 0.3023712 0.53767442
## 1284 0.651754386  0.392780027 0.4212828 0.8803318 0.3016146 0.53717472
## 1112 0.650877193  0.391902834 0.4206696 0.8801898 0.3008594 0.53667595
## 854  0.650877193  0.394466937 0.4215116 0.8812352 0.3027468 0.53803340
## 1119 0.650000000  0.393589744 0.4208999 0.8810939 0.3019938 0.53753475
## 1027 0.649122807  0.392712551 0.4202899 0.8809524 0.3012422 0.53703704
## 1360 0.648245614  0.391835358 0.4196816 0.8808105 0.3004921 0.53654024
## 821  0.647368421  0.390958165 0.4190751 0.8806683 0.2997434 0.53604436
## 1279 0.646491228  0.390080972 0.4184704 0.8805257 0.2989961 0.53554940
## 667  0.645614035  0.389203779 0.4178674 0.8803828 0.2982502 0.53505535
## 822  0.644736842  0.388326586 0.4172662 0.8802395 0.2975057 0.53456221
## 581  0.643859649  0.387449393 0.4166667 0.8800959 0.2967626 0.53406998
## 1450 0.642982456  0.386572200 0.4160689 0.8799520 0.2960208 0.53357866
## 852  0.642982456  0.389136302 0.4169054 0.8810096 0.2979151 0.53492647
## 1383 0.642105263  0.388259109 0.4163090 0.8808664 0.2971754 0.53443526
## 881  0.641228070  0.387381916 0.4157143 0.8807229 0.2964372 0.53394495
## 1225 0.640350877  0.386504723 0.4151213 0.8805790 0.2957003 0.53345555
## 1040 0.639473684  0.385627530 0.4145299 0.8804348 0.2949647 0.53296703
## 1331 0.639473684  0.388191633 0.4153627 0.8814994 0.2968621 0.53430924
## 280  0.638596491  0.387314440 0.4147727 0.8813559 0.2961287 0.53382084
## 406  0.637719298  0.386437247 0.4141844 0.8812121 0.2953965 0.53333333
## 991  0.636842105  0.385560054 0.4135977 0.8810680 0.2946657 0.53284672
## 328  0.635964912  0.384682861 0.4130127 0.8809235 0.2939362 0.53236098
## 1253 0.635087719  0.383805668 0.4124294 0.8807786 0.2932080 0.53187614
## 300  0.635087719  0.386369771 0.4132581 0.8818514 0.2951095 0.53321201
## 1211 0.635087719  0.388933873 0.4140845 0.8829268 0.2970113 0.53454545
## 550  0.634210526  0.388056680 0.4135021 0.8827839 0.2962860 0.53405995
## 339  0.633333333  0.387179487 0.4129213 0.8826406 0.2955619 0.53357532
## 12   0.632456140  0.386302294 0.4123422 0.8824969 0.2948392 0.53309157
## 1038 0.631578947  0.385425101 0.4117647 0.8823529 0.2941176 0.53260870
## 714  0.630701754  0.384547908 0.4111888 0.8822086 0.2933974 0.53212670
## 1047 0.630701754  0.387112011 0.4120112 0.8832924 0.2953036 0.53345389
## 1250 0.630701754  0.389676113 0.4128312 0.8843788 0.2972101 0.53477868
## 1333 0.630701754  0.392240216 0.4136490 0.8854680 0.2991170 0.53610108
## 1026 0.629824561  0.391363023 0.4130737 0.8853268 0.2984005 0.53561767
## 1232 0.628947368  0.390485830 0.4125000 0.8851852 0.2976852 0.53513514
## 860  0.628070175  0.389608637 0.4119279 0.8850433 0.2969711 0.53465347
## 290  0.628070175  0.392172740 0.4127424 0.8861386 0.2988810 0.53597122
## 545  0.627192982  0.391295547 0.4121715 0.8859975 0.2981690 0.53548967
## 1356 0.626315789  0.390418354 0.4116022 0.8858561 0.2974583 0.53500898
## 344  0.625438596  0.389541161 0.4110345 0.8857143 0.2967488 0.53452915
## 178  0.625438596  0.392105263 0.4118457 0.8868159 0.2986617 0.53584229
## 204  0.624561404  0.391228070 0.4112792 0.8866750 0.2979542 0.53536258
## 907  0.623684211  0.390350877 0.4107143 0.8865337 0.2972480 0.53488372
## 1455 0.622807018  0.389473684 0.4101509 0.8863920 0.2965429 0.53440572
## 1005 0.622807018  0.392037787 0.4109589 0.8875000 0.2984589 0.53571429
## 192  0.621929825  0.391160594 0.4103967 0.8873592 0.2977559 0.53523640
## 903  0.621052632  0.390283401 0.4098361 0.8872180 0.2970541 0.53475936
## 1240 0.620175439  0.389406208 0.4092769 0.8870765 0.2963535 0.53428317
## 538  0.619298246  0.388529015 0.4087193 0.8869347 0.2956540 0.53380783
## 998  0.618421053  0.387651822 0.4081633 0.8867925 0.2949557 0.53333333
## 846  0.618421053  0.390215924 0.4089674 0.8879093 0.2968767 0.53463588
## 1190 0.617543860  0.389338731 0.4084125 0.8877680 0.2961805 0.53416149
## 696  0.616666667  0.388461538 0.4078591 0.8876263 0.2954853 0.53368794
## 1172 0.616666667  0.391025641 0.4086604 0.8887484 0.2974088 0.53498671
## 255  0.615789474  0.390148448 0.4081081 0.8886076 0.2967157 0.53451327
## 294  0.614912281  0.389271255 0.4075574 0.8884664 0.2960238 0.53404067
## 340  0.614035088  0.388394062 0.4070081 0.8883249 0.2953330 0.53356890
## 54   0.613157895  0.387516869 0.4064603 0.8881830 0.2946433 0.53309797
## 1092 0.613157895  0.390080972 0.4072581 0.8893130 0.2965710 0.53439153
## 526  0.612280702  0.389203779 0.4067114 0.8891720 0.2958834 0.53392070
## 1323 0.611403509  0.388326586 0.4061662 0.8890306 0.2951968 0.53345070
## 1355 0.610526316  0.387449393 0.4056225 0.8888889 0.2945114 0.53298153
## 124  0.610526316  0.390013495 0.4064171 0.8900256 0.2964427 0.53427065
## 386  0.609649123  0.389136302 0.4058745 0.8898848 0.2957593 0.53380158
## 313  0.608771930  0.388259109 0.4053333 0.8897436 0.2950769 0.53333333
## 1183 0.607894737  0.387381916 0.4047936 0.8896021 0.2943957 0.53286591
## 1316 0.607017544  0.386504723 0.4042553 0.8894602 0.2937155 0.53239930
## 951  0.606140351  0.385627530 0.4037185 0.8893179 0.2930363 0.53193351
## 83   0.605263158  0.384750337 0.4031830 0.8891753 0.2923583 0.53146853
## 1346 0.604385965  0.383873144 0.4026490 0.8890323 0.2916813 0.53100437
## 162  0.604385965  0.386437247 0.4034392 0.8901809 0.2936200 0.53228621
## 695  0.603508772  0.385560054 0.4029062 0.8900388 0.2929450 0.53182214
## 343  0.602631579  0.384682861 0.4023747 0.8898964 0.2922710 0.53135889
## 770  0.601754386  0.383805668 0.4018445 0.8897536 0.2915981 0.53089643
## 825  0.600877193  0.382928475 0.4013158 0.8896104 0.2909262 0.53043478
## 588  0.600000000  0.382051282 0.4007884 0.8894668 0.2902553 0.52997394
## 756  0.599122807  0.381174089 0.4002625 0.8893229 0.2895854 0.52951389
## 102  0.598245614  0.380296896 0.3997379 0.8891786 0.2889165 0.52905464
## 415  0.597368421  0.379419703 0.3992147 0.8890339 0.2882486 0.52859619
## 928  0.597368421  0.381983806 0.4000000 0.8901961 0.2901961 0.52987013
## 557  0.596491228  0.381106613 0.3994778 0.8900524 0.2895302 0.52941176
## 60   0.595614035  0.380229420 0.3989570 0.8899083 0.2888652 0.52895419
## 900  0.594736842  0.379352227 0.3984375 0.8897638 0.2882013 0.52849741
## 977  0.594736842  0.381916329 0.3992198 0.8909330 0.2901527 0.52976704
## 610  0.594736842  0.384480432 0.4000000 0.8921053 0.2921053 0.53103448
## 635  0.593859649  0.383603239 0.3994812 0.8919631 0.2914443 0.53057709
## 1520 0.592982456  0.382726046 0.3989637 0.8918206 0.2907843 0.53012048
## 864  0.592105263  0.381848853 0.3984476 0.8916777 0.2901253 0.52966466
## 826  0.591228070  0.380971660 0.3979328 0.8915344 0.2894672 0.52920962
## 1502 0.591228070  0.383535762 0.3987097 0.8927152 0.2914249 0.53047210
## 627  0.590350877  0.382658570 0.3981959 0.8925729 0.2907688 0.53001715
## 59   0.589473684  0.381781377 0.3976834 0.8924303 0.2901137 0.52956298
## 248  0.588596491  0.380904184 0.3971722 0.8922872 0.2894595 0.52910959
## 547  0.587719298  0.380026991 0.3966624 0.8921438 0.2888062 0.52865697
## 1273 0.586842105  0.379149798 0.3961538 0.8920000 0.2881538 0.52820513
## 195  0.585964912  0.378272605 0.3956466 0.8918558 0.2875024 0.52775406
## 595  0.585087719  0.377395412 0.3951407 0.8917112 0.2868519 0.52730375
## 334  0.584210526  0.376518219 0.3946360 0.8915663 0.2862023 0.52685422
## 43   0.583333333  0.375641026 0.3941327 0.8914209 0.2855536 0.52640545
## 1305 0.582456140  0.374763833 0.3936306 0.8912752 0.2849057 0.52595745
## 5    0.581578947  0.373886640 0.3931298 0.8911290 0.2842588 0.52551020
## 435  0.580701754  0.373009447 0.3926302 0.8909825 0.2836127 0.52506372
## 1145 0.579824561  0.372132254 0.3921320 0.8908356 0.2829676 0.52461800
## 25   0.579824561  0.374696356 0.3929024 0.8920378 0.2849402 0.52586938
## 1106 0.578947368  0.373819163 0.3924051 0.8918919 0.2842970 0.52542373
## 1518 0.578070175  0.372941970 0.3919090 0.8917456 0.2836546 0.52497883
## 235  0.577192982  0.372064777 0.3914141 0.8915989 0.2830131 0.52453469
## 837  0.576315789  0.371187584 0.3909206 0.8914518 0.2823724 0.52409129
## 1097 0.576315789  0.373751687 0.3916877 0.8926630 0.2843507 0.52533784
## 999  0.575438596  0.372874494 0.3911950 0.8925170 0.2837120 0.52489451
## 536  0.574561404  0.371997301 0.3907035 0.8923706 0.2830741 0.52445194
## 214  0.573684211  0.371120108 0.3902133 0.8922237 0.2824370 0.52401011
## 1151 0.572807018  0.370242915 0.3897243 0.8920765 0.2818008 0.52356902
## 728  0.572807018  0.372807018 0.3904881 0.8932969 0.2837850 0.52481077
## 568  0.572807018  0.375371120 0.3912500 0.8945205 0.2857705 0.52605042
## 707  0.571929825  0.374493927 0.3907615 0.8943759 0.2851374 0.52560873
## 1262 0.571052632  0.373616734 0.3902743 0.8942308 0.2845051 0.52516779
## 1514 0.570175439  0.372739541 0.3897883 0.8940853 0.2838736 0.52472758
## 565  0.570175439  0.375303644 0.3905473 0.8953168 0.2858641 0.52596315
## 613  0.569298246  0.374426451 0.3900621 0.8951724 0.2852345 0.52552301
## 30   0.568421053  0.373549258 0.3895782 0.8950276 0.2846058 0.52508361
## 141  0.567543860  0.372672065 0.3890954 0.8948824 0.2839778 0.52464495
## 1158 0.566666667  0.371794872 0.3886139 0.8947368 0.2833507 0.52420701
## 205  0.565789474  0.370917679 0.3881335 0.8945908 0.2827243 0.52376981
## 1066 0.564912281  0.370040486 0.3876543 0.8944444 0.2820988 0.52333333
## 1501 0.564912281  0.372604588 0.3884094 0.8956885 0.2840978 0.52456286
## 1016 0.564035088  0.371727395 0.3879310 0.8955432 0.2834742 0.52412646
## 1035 0.563157895  0.370850202 0.3874539 0.8953975 0.2828514 0.52369077
## 817  0.562280702  0.369973009 0.3869779 0.8952514 0.2822293 0.52325581
## 1241 0.561403509  0.369095816 0.3865031 0.8951049 0.2816080 0.52282158
## 219  0.561403509  0.371659919 0.3872549 0.8963585 0.2836134 0.52404643
## 584  0.560526316  0.370782726 0.3867809 0.8962132 0.2829941 0.52361226
## 760  0.559649123  0.369905533 0.3863081 0.8960674 0.2823755 0.52317881
## 997  0.558771930  0.369028340 0.3858364 0.8959212 0.2817576 0.52274607
## 835  0.557894737  0.368151147 0.3853659 0.8957746 0.2811405 0.52231405
## 1285 0.557017544  0.367273954 0.3848965 0.8956276 0.2805241 0.52188274
## 419  0.556140351  0.366396761 0.3844282 0.8954802 0.2799084 0.52145215
## 858  0.555263158  0.365519568 0.3839611 0.8953324 0.2792935 0.52102226
## 1200 0.554385965  0.364642375 0.3834951 0.8951841 0.2786793 0.52059308
## 644  0.553508772  0.363765182 0.3830303 0.8950355 0.2780658 0.52016461
## 385  0.552631579  0.362887989 0.3825666 0.8948864 0.2774529 0.51973684
## 379  0.551754386  0.362010796 0.3821040 0.8947368 0.2768408 0.51930978
## 1340 0.551754386  0.364574899 0.3828502 0.8960114 0.2788616 0.52052545
## 470  0.550877193  0.363697706 0.3823884 0.8958631 0.2782515 0.52009844
## 242  0.550877193  0.366261808 0.3831325 0.8971429 0.2802754 0.52131148
## 1185 0.550000000  0.365384615 0.3826715 0.8969957 0.2796672 0.52088452
## 1398 0.549122807  0.364507422 0.3822115 0.8968481 0.2790597 0.52045827
## 403  0.548245614  0.363630229 0.3817527 0.8967001 0.2784528 0.52003271
## 637  0.547368421  0.362753036 0.3812950 0.8965517 0.2778467 0.51960784
## 1105 0.546491228  0.361875843 0.3808383 0.8964029 0.2772412 0.51918367
## 23   0.545614035  0.360998650 0.3803828 0.8962536 0.2766364 0.51876020
## 1436 0.544736842  0.360121457 0.3799283 0.8961039 0.2760322 0.51833741
## 1504 0.543859649  0.359244265 0.3794749 0.8959538 0.2754287 0.51791531
## 272  0.542982456  0.358367072 0.3790226 0.8958032 0.2748258 0.51749390
## 1264 0.542105263  0.357489879 0.3785714 0.8956522 0.2742236 0.51707317
## 484  0.542105263  0.360053981 0.3793103 0.8969521 0.2762624 0.51827782
## 895  0.541228070  0.359176788 0.3788599 0.8968023 0.2756622 0.51785714
## 437  0.540350877  0.358299595 0.3784104 0.8966521 0.2750625 0.51743715
## 67   0.539473684  0.357422402 0.3779621 0.8965015 0.2744635 0.51701783
## 776  0.538596491  0.356545209 0.3775148 0.8963504 0.2738652 0.51659919
## 58   0.538596491  0.359109312 0.3782506 0.8976608 0.2759114 0.51779935
## 1167 0.537719298  0.358232119 0.3778040 0.8975110 0.2753150 0.51738076
## 1104 0.536842105  0.357354926 0.3773585 0.8973607 0.2747192 0.51696284
## 489  0.536842105  0.359919028 0.3780919 0.8986784 0.2767703 0.51815981
## 763  0.536842105  0.362483131 0.3788235 0.9000000 0.2788235 0.51935484
## 583  0.535964912  0.361605938 0.3783784 0.8998527 0.2782311 0.51893634
## 831  0.535087719  0.360728745 0.3779343 0.8997050 0.2776393 0.51851852
## 1400 0.534210526  0.359851552 0.3774912 0.8995569 0.2770481 0.51810137
## 970  0.534210526  0.362415655 0.3782201 0.9008876 0.2791077 0.51929260
## 110  0.533333333  0.361538462 0.3777778 0.9007407 0.2785185 0.51887550
## 1440 0.532456140  0.360661269 0.3773364 0.9005935 0.2779299 0.51845907
## 207  0.531578947  0.359784076 0.3768961 0.9004458 0.2773419 0.51804330
## 1248 0.530701754  0.358906883 0.3764569 0.9002976 0.2767545 0.51762821
## 358  0.530701754  0.361470985 0.3771828 0.9016393 0.2788221 0.51881505
## 870  0.529824561  0.360593792 0.3767442 0.9014925 0.2782367 0.51840000
## 1270 0.528947368  0.359716599 0.3763066 0.9013453 0.2776519 0.51798561
## 592  0.528070175  0.358839406 0.3758701 0.9011976 0.2770677 0.51757188
## 579  0.527192982  0.357962213 0.3754345 0.9010495 0.2764840 0.51715882
## 495  0.526315789  0.357085020 0.3750000 0.9009009 0.2759009 0.51674641
## 1034 0.525438596  0.356207827 0.3745665 0.9007519 0.2753184 0.51633466
## 794  0.524561404  0.355330634 0.3741339 0.9006024 0.2747364 0.51592357
## 648  0.523684211  0.354453441 0.3737024 0.9004525 0.2741549 0.51551313
## 692  0.523684211  0.357017544 0.3744240 0.9018127 0.2762367 0.51669316
## 1427 0.522807018  0.356140351 0.3739931 0.9016641 0.2756572 0.51628276
## 533  0.521929825  0.355263158 0.3735632 0.9015152 0.2750784 0.51587302
## 1386 0.521052632  0.354385965 0.3731343 0.9013657 0.2745000 0.51546392
## 1272 0.520175439  0.353508772 0.3727064 0.9012158 0.2739222 0.51505547
## 20   0.519298246  0.352631579 0.3722795 0.9010654 0.2733449 0.51464766
## 367  0.519298246  0.355195682 0.3729977 0.9024390 0.2754367 0.51582278
## 789  0.518421053  0.354318489 0.3725714 0.9022901 0.2748615 0.51541502
## 1122 0.517543860  0.353441296 0.3721461 0.9021407 0.2742868 0.51500790
## 1192 0.516666667  0.352564103 0.3717218 0.9019908 0.2737126 0.51460142
## 529  0.515789474  0.351686910 0.3712984 0.9018405 0.2731389 0.51419558
## 649  0.514912281  0.350809717 0.3708760 0.9016897 0.2725657 0.51379039
## 176  0.514912281  0.353373819 0.3715909 0.9030769 0.2746678 0.51496063
## 1205 0.514035088  0.352496626 0.3711691 0.9029276 0.2740967 0.51455547
## 1197 0.513157895  0.351619433 0.3707483 0.9027778 0.2735261 0.51415094
## 65   0.512280702  0.350742240 0.3703284 0.9026275 0.2729559 0.51374705
## 389  0.511403509  0.349865047 0.3699095 0.9024768 0.2723863 0.51334380
## 940  0.510526316  0.348987854 0.3694915 0.9023256 0.2718171 0.51294118
## 1415 0.510526316  0.351551957 0.3702032 0.9037267 0.2739299 0.51410658
## 1064 0.509649123  0.350674764 0.3697858 0.9035770 0.2733628 0.51370399
## 448  0.509649123  0.353238866 0.3704955 0.9049844 0.2754799 0.51486698
## 396  0.508771930  0.352361673 0.3700787 0.9048362 0.2749149 0.51446443
## 1063 0.507894737  0.351484480 0.3696629 0.9046875 0.2743504 0.51406250
## 6    0.507017544  0.350607287 0.3692480 0.9045383 0.2737864 0.51366120
## 1132 0.506140351  0.349730094 0.3688341 0.9043887 0.2732228 0.51326053
## 187  0.505263158  0.348852901 0.3684211 0.9042386 0.2726597 0.51286048
## 1100 0.504385965  0.347975709 0.3680089 0.9040881 0.2720970 0.51246106
## 150  0.503508772  0.347098516 0.3675978 0.9039370 0.2715348 0.51206226
## 1117 0.502631579  0.346221323 0.3671875 0.9037855 0.2709730 0.51166407
## 558  0.501754386  0.345344130 0.3667781 0.9036335 0.2704116 0.51126651
## 1102 0.500877193  0.344466937 0.3663697 0.9034810 0.2698507 0.51086957
## 354  0.500000000  0.343589744 0.3659622 0.9033281 0.2692902 0.51047324
## 752  0.499122807  0.342712551 0.3655556 0.9031746 0.2687302 0.51007752
## 1162 0.498245614  0.341835358 0.3651498 0.9030207 0.2681705 0.50968242
## 399  0.498245614  0.344399460 0.3658537 0.9044586 0.2703123 0.51083591
## 1445 0.497368421  0.343522267 0.3654485 0.9043062 0.2697547 0.51044084
## 372  0.496491228  0.342645074 0.3650442 0.9041534 0.2691976 0.51004637
## 736  0.495614035  0.341767881 0.3646409 0.9040000 0.2686409 0.50965251
## 589  0.494736842  0.340890688 0.3642384 0.9038462 0.2680846 0.50925926
## 1378 0.493859649  0.340013495 0.3638368 0.9036918 0.2675286 0.50886662
## 750  0.492982456  0.339136302 0.3634361 0.9035370 0.2669731 0.50847458
## 1374 0.492105263  0.338259109 0.3630363 0.9033816 0.2664179 0.50808314
## 843  0.492105263  0.340823212 0.3637363 0.9048387 0.2685750 0.50923077
## 942  0.491228070  0.339946019 0.3633370 0.9046850 0.2680220 0.50883935
## 182  0.491228070  0.342510121 0.3640351 0.9061489 0.2701840 0.50998464
## 355  0.490350877  0.341632928 0.3636364 0.9059968 0.2696331 0.50959325
## 1358 0.489473684  0.340755735 0.3632385 0.9058442 0.2690827 0.50920245
## 540  0.488596491  0.339878543 0.3628415 0.9056911 0.2685326 0.50881226
## 1054 0.488596491  0.342442645 0.3635371 0.9071661 0.2707032 0.50995406
## 989  0.487719298  0.341565452 0.3631407 0.9070147 0.2701554 0.50956389
## 652  0.486842105  0.340688259 0.3627451 0.9068627 0.2696078 0.50917431
## 1364 0.485964912  0.339811066 0.3623504 0.9067103 0.2690607 0.50878533
## 1421 0.485964912  0.342375169 0.3630435 0.9081967 0.2712402 0.50992366
## 289  0.485087719  0.341497976 0.3626493 0.9080460 0.2706953 0.50953471
## 165  0.484210526  0.340620783 0.3622560 0.9078947 0.2701507 0.50914634
## 757  0.483333333  0.339743590 0.3618635 0.9077430 0.2696065 0.50875857
## 1115 0.482456140  0.338866397 0.3614719 0.9075908 0.2690626 0.50837139
## 1220 0.482456140  0.341430499 0.3621622 0.9090909 0.2712531 0.50950570
## 394  0.481578947  0.340553306 0.3617711 0.9089404 0.2707115 0.50911854
## 497  0.480701754  0.339676113 0.3613808 0.9087894 0.2701702 0.50873197
## 523  0.479824561  0.338798920 0.3609914 0.9086379 0.2696293 0.50834598
## 293  0.478947368  0.337921727 0.3606028 0.9084859 0.2690887 0.50796058
## 1291 0.478947368  0.340485830 0.3612903 0.9100000 0.2712903 0.50909091
## 1419 0.478947368  0.343049933 0.3619764 0.9115192 0.2734956 0.51021953
## 632  0.478070175  0.342172740 0.3615880 0.9113712 0.2729592 0.50983359
## 1351 0.477192982  0.341295547 0.3612004 0.9112228 0.2724232 0.50944822
## 527  0.476315789  0.340418354 0.3608137 0.9110738 0.2718875 0.50906344
## 575  0.475438596  0.339541161 0.3604278 0.9109244 0.2713522 0.50867925
## 1153 0.474561404  0.338663968 0.3600427 0.9107744 0.2708171 0.50829563
## 1437 0.473684211  0.337786775 0.3596585 0.9106239 0.2702824 0.50791258
## 934  0.473684211  0.340350877 0.3603412 0.9121622 0.2725033 0.50903614
## 678  0.472807018  0.339473684 0.3599574 0.9120135 0.2719709 0.50865312
## 1109 0.471929825  0.338596491 0.3595745 0.9118644 0.2714389 0.50827068
## 582  0.471052632  0.337719298 0.3591923 0.9117148 0.2709071 0.50788881
## 877  0.470175439  0.336842105 0.3588110 0.9115646 0.2703757 0.50750751
## 167  0.470175439  0.339406208 0.3594910 0.9131175 0.2726085 0.50862716
## 772  0.469298246  0.338529015 0.3591102 0.9129693 0.2720795 0.50824588
## 257  0.468421053  0.337651822 0.3587302 0.9128205 0.2715507 0.50786517
## 331  0.467543860  0.336774629 0.3583510 0.9126712 0.2710222 0.50748503
## 976  0.467543860  0.339338731 0.3590285 0.9142367 0.2732652 0.50860135
## 1428 0.466666667  0.338461538 0.3586498 0.9140893 0.2727391 0.50822123
## 461  0.465789474  0.337584345 0.3582719 0.9139415 0.2722133 0.50784167
## 1147 0.464912281  0.336707152 0.3578947 0.9137931 0.2716878 0.50746269
## 240  0.464035088  0.335829960 0.3575184 0.9136442 0.2711626 0.50708427
## 1046 0.463157895  0.334952767 0.3571429 0.9134948 0.2706377 0.50670641
## 103  0.462280702  0.334075574 0.3567681 0.9133449 0.2701130 0.50632911
## 185  0.461403509  0.333198381 0.3563941 0.9131944 0.2695886 0.50595238
## 1314 0.460526316  0.332321188 0.3560209 0.9130435 0.2690644 0.50557621
## 1286 0.459649123  0.331443995 0.3556485 0.9128920 0.2685405 0.50520059
## 950  0.458771930  0.330566802 0.3552769 0.9127400 0.2680169 0.50482554
## 828  0.457894737  0.329689609 0.3549061 0.9125874 0.2674935 0.50445104
## 1313 0.457017544  0.328812416 0.3545360 0.9124343 0.2669703 0.50407709
## 271  0.456140351  0.327935223 0.3541667 0.9122807 0.2664474 0.50370370
## 838  0.455263158  0.327058030 0.3537981 0.9121265 0.2659247 0.50333087
## 131  0.454385965  0.326180837 0.3534304 0.9119718 0.2654022 0.50295858
## 1480 0.453508772  0.325303644 0.3530633 0.9118166 0.2648799 0.50258684
## 733  0.453508772  0.327867746 0.3537344 0.9134276 0.2671620 0.50369276
## 1462 0.452631579  0.326990553 0.3533679 0.9132743 0.2666422 0.50332103
## 1070 0.451754386  0.326113360 0.3530021 0.9131206 0.2661226 0.50294985
## 462  0.450877193  0.325236167 0.3526370 0.9129663 0.2656033 0.50257922
## 1148 0.450000000  0.324358974 0.3522727 0.9128114 0.2650841 0.50220913
## 460  0.449122807  0.323481781 0.3519092 0.9126560 0.2645652 0.50183959
## 666  0.448245614  0.322604588 0.3515464 0.9125000 0.2640464 0.50147059
## 169  0.447368421  0.321727395 0.3511843 0.9123435 0.2635278 0.50110213
## 1182 0.446491228  0.320850202 0.3508230 0.9121864 0.2630094 0.50073421
## 979  0.445614035  0.319973009 0.3504625 0.9120287 0.2624912 0.50036684
## 1261 0.444736842  0.319095816 0.3501027 0.9118705 0.2619732 0.50000000
## 161  0.443859649  0.318218623 0.3497436 0.9117117 0.2614553 0.49963370
## 1267 0.442982456  0.317341430 0.3493852 0.9115523 0.2609376 0.49926794
## 1388 0.442105263  0.316464238 0.3490276 0.9113924 0.2604200 0.49890271
## 336  0.441228070  0.315587045 0.3486708 0.9112319 0.2599026 0.49853801
## 722  0.441228070  0.318151147 0.3493361 0.9128857 0.2622217 0.49963477
## 1028 0.440350877  0.317273954 0.3489796 0.9127273 0.2617069 0.49927007
## 8    0.439473684  0.316396761 0.3486239 0.9125683 0.2611922 0.49890591
## 1124 0.438596491  0.315519568 0.3482688 0.9124088 0.2606776 0.49854227
## 1062 0.437719298  0.314642375 0.3479145 0.9122486 0.2601632 0.49817917
## 876  0.436842105  0.313765182 0.3475610 0.9120879 0.2596489 0.49781659
## 738  0.435964912  0.312887989 0.3472081 0.9119266 0.2591347 0.49745455
## 1404 0.435087719  0.312010796 0.3468560 0.9117647 0.2586207 0.49709302
## 62   0.434210526  0.311133603 0.3465046 0.9116022 0.2581068 0.49673203
## 543  0.433333333  0.310256410 0.3461538 0.9114391 0.2575930 0.49637155
## 1139 0.432456140  0.309379217 0.3458038 0.9112754 0.2570793 0.49601160
## 816  0.431578947  0.308502024 0.3454545 0.9111111 0.2565657 0.49565217
## 743  0.430701754  0.307624831 0.3451060 0.9109462 0.2560522 0.49529327
## 1422 0.430701754  0.310188934 0.3457661 0.9126394 0.2584055 0.49638205
## 923  0.429824561  0.309311741 0.3454179 0.9124767 0.2578946 0.49602314
## 475  0.428947368  0.308434548 0.3450704 0.9123134 0.2573839 0.49566474
## 745  0.428070175  0.307557355 0.3447236 0.9121495 0.2568732 0.49530686
## 863  0.427192982  0.306680162 0.3443775 0.9119850 0.2563625 0.49494949
## 1339 0.427192982  0.309244265 0.3450351 0.9136961 0.2587312 0.49603461
## 1530 0.426315789  0.308367072 0.3446894 0.9135338 0.2582232 0.49567723
## 1036 0.425438596  0.307489879 0.3443443 0.9133710 0.2577153 0.49532037
## 327  0.424561404  0.306612686 0.3440000 0.9132075 0.2572075 0.49496403
## 682  0.424561404  0.309176788 0.3446553 0.9149338 0.2595892 0.49604601
## 14   0.423684211  0.308299595 0.3443114 0.9147727 0.2590841 0.49568966
## 411  0.422807018  0.307422402 0.3439681 0.9146110 0.2585791 0.49533381
## 1289 0.421929825  0.306545209 0.3436255 0.9144487 0.2580742 0.49497848
## 136  0.421052632  0.305668016 0.3432836 0.9142857 0.2575693 0.49462366
## 1018 0.420175439  0.304790823 0.3429423 0.9141221 0.2570645 0.49426934
## 480  0.420175439  0.307354926 0.3435948 0.9158700 0.2594648 0.49534717
## 795  0.419298246  0.306477733 0.3432540 0.9157088 0.2589628 0.49499285
## 1179 0.419298246  0.309041835 0.3439049 0.9174664 0.2613713 0.49606862
## 623  0.418421053  0.308164642 0.3435644 0.9173077 0.2608720 0.49571429
## 1510 0.417543860  0.307287449 0.3432245 0.9171484 0.2603729 0.49536046
## 834  0.416666667  0.306410256 0.3428854 0.9169884 0.2598738 0.49500713
## 155  0.415789474  0.305533063 0.3425469 0.9168279 0.2593747 0.49465431
## 321  0.414912281  0.304655870 0.3422091 0.9166667 0.2588757 0.49430199
## 434  0.414035088  0.303778677 0.3418719 0.9165049 0.2583768 0.49395018
## 318  0.413157895  0.302901484 0.3415354 0.9163424 0.2578778 0.49359886
## 283  0.412280702  0.302024291 0.3411996 0.9161793 0.2573789 0.49324805
## 813  0.412280702  0.304588394 0.3418468 0.9179688 0.2598155 0.49431818
## 88   0.411403509  0.303711201 0.3415113 0.9178082 0.2593195 0.49396735
## 792  0.410526316  0.302834008 0.3411765 0.9176471 0.2588235 0.49361702
## 50   0.409649123  0.301956815 0.3408423 0.9174853 0.2583276 0.49326719
## 1295 0.409649123  0.304520918 0.3414873 0.9192913 0.2607786 0.49433428
## 1208 0.409649123  0.307085020 0.3421310 0.9211045 0.2632355 0.49539986
## 479  0.409649123  0.309649123 0.3427734 0.9229249 0.2656983 0.49646393
## 1184 0.408771930  0.308771930 0.3424390 0.9227723 0.2652113 0.49611307
## 193  0.407894737  0.307894737 0.3421053 0.9226190 0.2647243 0.49576271
## 144  0.407894737  0.310458839 0.3427459 0.9244533 0.2671991 0.49682428
## 42   0.407017544  0.309581646 0.3424125 0.9243028 0.2667152 0.49647391
## 1392 0.406140351  0.308704453 0.3420797 0.9241517 0.2662314 0.49612403
## 665  0.405263158  0.307827260 0.3417476 0.9240000 0.2657476 0.49577465
## 184  0.404385965  0.306950067 0.3414161 0.9238477 0.2652638 0.49542576
## 698  0.403508772  0.306072874 0.3410853 0.9236948 0.2647801 0.49507736
## 1219 0.403508772  0.308636977 0.3417231 0.9255533 0.2672765 0.49613493
## 641  0.403508772  0.311201080 0.3423598 0.9274194 0.2697791 0.49719101
## 590  0.402631579  0.310323887 0.3420290 0.9272727 0.2693017 0.49684211
## 1438 0.401754386  0.309446694 0.3416988 0.9271255 0.2688243 0.49649369
## 278  0.400877193  0.308569501 0.3413693 0.9269777 0.2683470 0.49614576
## 952  0.400000000  0.307692308 0.3410405 0.9268293 0.2678697 0.49579832
## 128  0.400000000  0.310256410 0.3416747 0.9287169 0.2703916 0.49685094
## 597  0.399122807  0.309379217 0.3413462 0.9285714 0.2699176 0.49650350
## 186  0.398245614  0.308502024 0.3410183 0.9284254 0.2694436 0.49615653
## 1154 0.397368421  0.307624831 0.3406910 0.9282787 0.2689697 0.49581006
## 987  0.396491228  0.306747638 0.3403643 0.9281314 0.2684958 0.49546406
## 800  0.395614035  0.305870445 0.3400383 0.9279835 0.2680219 0.49511855
## 955  0.394736842  0.304993252 0.3397129 0.9278351 0.2675480 0.49477352
## 716  0.393859649  0.304116059 0.3393881 0.9276860 0.2670741 0.49442897
## 1257 0.392982456  0.303238866 0.3390640 0.9275362 0.2666002 0.49408490
## 1353 0.392105263  0.302361673 0.3387405 0.9273859 0.2661264 0.49374131
## 630  0.391228070  0.301484480 0.3384175 0.9272349 0.2656525 0.49339819
## 720  0.390350877  0.300607287 0.3380952 0.9270833 0.2651786 0.49305556
## 436  0.389473684  0.299730094 0.3377735 0.9269311 0.2647047 0.49271339
## 1466 0.388596491  0.298852901 0.3374525 0.9267782 0.2642307 0.49237171
## 1243 0.387719298  0.297975709 0.3371320 0.9266247 0.2637567 0.49203049
## 1142 0.386842105  0.297098516 0.3368121 0.9264706 0.2632827 0.49168975
## 380  0.385964912  0.296221323 0.3364929 0.9263158 0.2628087 0.49134948
## 697  0.385087719  0.295344130 0.3361742 0.9261603 0.2623346 0.49100968
## 1403 0.384210526  0.294466937 0.3358562 0.9260042 0.2618604 0.49067035
## 699  0.383333333  0.293589744 0.3355388 0.9258475 0.2613862 0.49033149
## 962  0.382456140  0.292712551 0.3352219 0.9256900 0.2609119 0.48999310
## 1350 0.381578947  0.291835358 0.3349057 0.9255319 0.2604376 0.48965517
## 1479 0.380701754  0.290958165 0.3345900 0.9253731 0.2599631 0.48931771
## 1387 0.379824561  0.290080972 0.3342750 0.9252137 0.2594886 0.48898072
## 1371 0.379824561  0.292645074 0.3349012 0.9271949 0.2620961 0.49002065
## 48   0.378947368  0.291767881 0.3345865 0.9270386 0.2616251 0.48968363
## 961  0.378070175  0.290890688 0.3342723 0.9268817 0.2611540 0.48934708
## 1357 0.377192982  0.290013495 0.3339587 0.9267241 0.2606829 0.48901099
## 1389 0.376315789  0.289136302 0.3336457 0.9265659 0.2602116 0.48867536
## 571  0.376315789  0.291700405 0.3342697 0.9285714 0.2628411 0.48971193
## 1168 0.376315789  0.294264507 0.3348924 0.9305857 0.2654781 0.49074709
## 95   0.375438596  0.293387314 0.3345794 0.9304348 0.2650142 0.49041096
## 709  0.374561404  0.292510121 0.3342670 0.9302832 0.2645503 0.49007529
## 1505 0.373684211  0.291632928 0.3339552 0.9301310 0.2640862 0.48974008
## 1467 0.372807018  0.290755735 0.3336440 0.9299781 0.2636221 0.48940533
## 1140 0.371929825  0.289878543 0.3333333 0.9298246 0.2631579 0.48907104
## 1157 0.371052632  0.289001350 0.3330233 0.9296703 0.2626936 0.48873720
## 1044 0.370175439  0.288124157 0.3327138 0.9295154 0.2622292 0.48840382
## 1320 0.369298246  0.287246964 0.3324048 0.9293598 0.2617647 0.48807089
## 1156 0.368421053  0.286369771 0.3320965 0.9292035 0.2613000 0.48773842
## 946  0.367543860  0.285492578 0.3317887 0.9290466 0.2608353 0.48740640
## 1069 0.366666667  0.284615385 0.3314815 0.9288889 0.2603704 0.48707483
## 1023 0.365789474  0.283738192 0.3311748 0.9287305 0.2599054 0.48674371
## 1143 0.364912281  0.282860999 0.3308688 0.9285714 0.2594402 0.48641304
## 286  0.364035088  0.281983806 0.3305633 0.9284116 0.2589749 0.48608282
## 680  0.363157895  0.281106613 0.3302583 0.9282511 0.2585094 0.48575305
## 711  0.362280702  0.280229420 0.3299539 0.9280899 0.2580438 0.48542373
## 924  0.362280702  0.282793522 0.3305709 0.9301802 0.2607511 0.48644986
## 606  0.362280702  0.285357625 0.3311868 0.9322799 0.2634667 0.48747461
## 1108 0.361403509  0.284480432 0.3308824 0.9321267 0.2630090 0.48714479
## 664  0.360526316  0.283603239 0.3305785 0.9319728 0.2625513 0.48681542
## 656  0.359649123  0.282726046 0.3302752 0.9318182 0.2620934 0.48648649
## 862  0.358771930  0.281848853 0.3299725 0.9316629 0.2616354 0.48615800
## 1349 0.357894737  0.280971660 0.3296703 0.9315068 0.2611772 0.48582996
## 953  0.357017544  0.280094467 0.3293687 0.9313501 0.2607188 0.48550236
## 744  0.356140351  0.279217274 0.3290676 0.9311927 0.2602603 0.48517520
## 546  0.355263158  0.278340081 0.3287671 0.9310345 0.2598016 0.48484848
## 1180 0.355263158  0.280904184 0.3293796 0.9331797 0.2625593 0.48586810
## 671  0.354385965  0.280026991 0.3290793 0.9330254 0.2621047 0.48554136
## 1304 0.353508772  0.279149798 0.3287796 0.9328704 0.2616500 0.48521505
## 984  0.352631579  0.278272605 0.3284804 0.9327146 0.2611951 0.48488919
## 464  0.351754386  0.277395412 0.3281818 0.9325581 0.2607400 0.48456376
## 1189 0.350877193  0.276518219 0.3278837 0.9324009 0.2602847 0.48423877
## 388  0.350000000  0.275641026 0.3275862 0.9322430 0.2598292 0.48391421
## 586  0.349122807  0.274763833 0.3272892 0.9320843 0.2593735 0.48359009
## 990  0.348245614  0.273886640 0.3269928 0.9319249 0.2589176 0.48326640
## 1236 0.347368421  0.273009447 0.3266968 0.9317647 0.2584615 0.48294314
## 349  0.346491228  0.272132254 0.3264014 0.9316038 0.2580052 0.48262032
## 1002 0.345614035  0.271255061 0.3261066 0.9314421 0.2575487 0.48229793
## 117  0.345614035  0.273819163 0.3267148 0.9336493 0.2603641 0.48331108
## 607  0.345614035  0.276383266 0.3273219 0.9358670 0.2631889 0.48432288
## 98   0.344736842  0.275506073 0.3270270 0.9357143 0.2627413 0.48400000
## 1369 0.343859649  0.274628880 0.3267327 0.9355609 0.2622935 0.48367755
## 333  0.342982456  0.273751687 0.3264388 0.9354067 0.2618455 0.48335553
## 311  0.342105263  0.272874494 0.3261456 0.9352518 0.2613974 0.48303393
## 1021 0.341228070  0.271997301 0.3258528 0.9350962 0.2609489 0.48271277
## 948  0.340350877  0.271120108 0.3255605 0.9349398 0.2605003 0.48239203
## 1166 0.339473684  0.270242915 0.3252688 0.9347826 0.2600514 0.48207171
## 668  0.338596491  0.269365722 0.3249776 0.9346247 0.2596023 0.48175182
## 587  0.337719298  0.268488529 0.3246869 0.9344660 0.2591530 0.48143236
## 1442 0.336842105  0.267611336 0.3243968 0.9343066 0.2587034 0.48111332
## 959  0.335964912  0.266734143 0.3241071 0.9341463 0.2582535 0.48079470
## 906  0.335087719  0.265856950 0.3238180 0.9339853 0.2578033 0.48047651
## 507  0.334210526  0.264979757 0.3235294 0.9338235 0.2573529 0.48015873
## 1059 0.334210526  0.267543860 0.3241318 0.9361179 0.2602497 0.48116325
## 639  0.333333333  0.266666667 0.3238434 0.9359606 0.2598040 0.48084544
## 996  0.332456140  0.265789474 0.3235556 0.9358025 0.2593580 0.48052805
## 1409 0.331578947  0.264912281 0.3232682 0.9356436 0.2589118 0.48021108
## 938  0.330701754  0.264035088 0.3229814 0.9354839 0.2584652 0.47989453
## 896  0.329824561  0.263157895 0.3226950 0.9353234 0.2580184 0.47957839
## 52   0.328947368  0.262280702 0.3224092 0.9351621 0.2575713 0.47926267
## 378  0.328070175  0.261403509 0.3221239 0.9350000 0.2571239 0.47894737
## 1079 0.327192982  0.260526316 0.3218391 0.9348371 0.2566762 0.47863248
## 982  0.326315789  0.259649123 0.3215548 0.9346734 0.2562281 0.47831800
## 988  0.325438596  0.258771930 0.3212710 0.9345088 0.2557798 0.47800394
## 700  0.324561404  0.257894737 0.3209877 0.9343434 0.2553311 0.47769029
## 383  0.323684211  0.257017544 0.3207048 0.9341772 0.2548821 0.47737705
## 840  0.322807018  0.256140351 0.3204225 0.9340102 0.2544327 0.47706422
## 130  0.321929825  0.255263158 0.3201407 0.9338422 0.2539830 0.47675180
## 1277 0.321052632  0.254385965 0.3198594 0.9336735 0.2535329 0.47643979
## 468  0.320175439  0.253508772 0.3195786 0.9335038 0.2530824 0.47612819
## 719  0.319298246  0.252631579 0.3192982 0.9333333 0.2526316 0.47581699
## 1114 0.318421053  0.251754386 0.3190184 0.9331620 0.2521804 0.47550621
## 790  0.317543860  0.250877193 0.3187391 0.9329897 0.2517287 0.47519582
## 68   0.316666667  0.250000000 0.3184602 0.9328165 0.2512767 0.47488584
## 1032 0.315789474  0.249122807 0.3181818 0.9326425 0.2508243 0.47457627
## 1260 0.314912281  0.248245614 0.3179039 0.9324675 0.2503715 0.47426710
## 1399 0.314035088  0.247368421 0.3176265 0.9322917 0.2499182 0.47395833
## 1244 0.313157895  0.246491228 0.3173496 0.9321149 0.2494645 0.47364997
## 910  0.312280702  0.245614035 0.3170732 0.9319372 0.2490103 0.47334200
## 882  0.311403509  0.244736842 0.3167972 0.9317585 0.2485557 0.47303444
## 356  0.311403509  0.247300945 0.3173913 0.9342105 0.2516018 0.47402597
## 458  0.310526316  0.246423752 0.3171156 0.9340369 0.2511525 0.47371836
## 1204 0.309649123  0.245546559 0.3168403 0.9338624 0.2507027 0.47341115
## 1207 0.308771930  0.244669366 0.3165655 0.9336870 0.2502525 0.47310434
## 220  0.308771930  0.247233468 0.3171577 0.9361702 0.2533279 0.47409326
## 814  0.308771930  0.249797571 0.3177489 0.9386667 0.2564156 0.47508091
## 466  0.307894737  0.248920378 0.3174740 0.9385027 0.2559767 0.47477361
## 892  0.307017544  0.248043185 0.3171997 0.9383378 0.2555375 0.47446671
## 616  0.306140351  0.247165992 0.3169257 0.9381720 0.2550978 0.47416021
## 947  0.305263158  0.246288799 0.3166523 0.9380054 0.2546577 0.47385410
## 1444 0.304385965  0.245411606 0.3163793 0.9378378 0.2542171 0.47354839
## 1110 0.303508772  0.244534413 0.3161068 0.9376694 0.2537762 0.47324307
## 530  0.302631579  0.243657220 0.3158348 0.9375000 0.2533348 0.47293814
## 645  0.301754386  0.242780027 0.3155632 0.9373297 0.2528929 0.47263361
## 646  0.300877193  0.241902834 0.3152921 0.9371585 0.2524506 0.47232947
## 465  0.300000000  0.241025641 0.3150215 0.9369863 0.2520078 0.47202572
## 912  0.299122807  0.240148448 0.3147513 0.9368132 0.2515645 0.47172237
## 329  0.298245614  0.239271255 0.3144816 0.9366391 0.2511207 0.47141940
## 548  0.297368421  0.238394062 0.3142123 0.9364641 0.2506764 0.47111682
## 625  0.296491228  0.237516869 0.3139435 0.9362881 0.2502316 0.47081462
## 683  0.296491228  0.240080972 0.3145299 0.9388889 0.2534188 0.47179487
## 675  0.295614035  0.239203779 0.3142613 0.9387187 0.2529800 0.47149263
## 577  0.294736842  0.238326586 0.3139932 0.9385475 0.2525407 0.47119078
## 1150 0.293859649  0.237449393 0.3137255 0.9383754 0.2521008 0.47088932
## 1263 0.292982456  0.236572200 0.3134583 0.9382022 0.2516605 0.47058824
## 398  0.292105263  0.235695007 0.3131915 0.9380282 0.2512197 0.47028754
## 519  0.292105263  0.238259109 0.3137755 0.9406780 0.2544535 0.47126437
## 554  0.291228070  0.237381916 0.3135089 0.9405099 0.2540188 0.47096362
## 1195 0.290350877  0.236504723 0.3132428 0.9403409 0.2535837 0.47066327
## 631  0.289473684  0.235627530 0.3129771 0.9401709 0.2531480 0.47036329
## 580  0.288596491  0.234750337 0.3127119 0.9400000 0.2527119 0.47006369
## 1022 0.287719298  0.233873144 0.3124471 0.9398281 0.2522752 0.46976448
## 4    0.286842105  0.232995951 0.3121827 0.9396552 0.2518379 0.46946565
## 1446 0.285964912  0.232118758 0.3119189 0.9394813 0.2514001 0.46916720
## 1354 0.285087719  0.231241565 0.3116554 0.9393064 0.2509618 0.46886912
## 1311 0.284210526  0.230364372 0.3113924 0.9391304 0.2505228 0.46857143
## 1394 0.283333333  0.229487179 0.3111298 0.9389535 0.2500833 0.46827411
## 914  0.282456140  0.228609987 0.3108677 0.9387755 0.2496432 0.46797717
## 312  0.281578947  0.227732794 0.3106061 0.9385965 0.2492026 0.46768061
## 1471 0.280701754  0.226855601 0.3103448 0.9384164 0.2487612 0.46738442
## 1307 0.279824561  0.225978408 0.3100840 0.9382353 0.2483193 0.46708861
## 430  0.278947368  0.225101215 0.3098237 0.9380531 0.2478768 0.46679317
## 332  0.278070175  0.224224022 0.3095638 0.9378698 0.2474336 0.46649810
## 718  0.277192982  0.223346829 0.3093043 0.9376855 0.2469897 0.46620341
## 598  0.276315789  0.222469636 0.3090452 0.9375000 0.2465452 0.46590909
## 104  0.275438596  0.221592443 0.3087866 0.9373134 0.2461000 0.46561514
## 206  0.275438596  0.224156545 0.3093645 0.9401198 0.2494843 0.46658260
## 511  0.274561404  0.223279352 0.3091061 0.9399399 0.2490460 0.46628859
## 1473 0.273684211  0.222402159 0.3088481 0.9397590 0.2486071 0.46599496
## 605  0.273684211  0.224966262 0.3094245 0.9425982 0.2520227 0.46696035
## 677  0.272807018  0.224089069 0.3091667 0.9424242 0.2515909 0.46666667
## 964  0.271929825  0.223211876 0.3089092 0.9422492 0.2511585 0.46637335
## 512  0.271052632  0.222334683 0.3086522 0.9420732 0.2507254 0.46608040
## 1489 0.270175439  0.221457490 0.3083957 0.9418960 0.2502917 0.46578782
## 879  0.269298246  0.220580297 0.3081395 0.9417178 0.2498573 0.46549561
## 112  0.268421053  0.219703104 0.3078838 0.9415385 0.2494223 0.46520376
## 157  0.267543860  0.218825911 0.3076285 0.9413580 0.2489865 0.46491228
## 773  0.266666667  0.217948718 0.3073737 0.9411765 0.2485501 0.46462116
## 1072 0.265789474  0.217071525 0.3071192 0.9409938 0.2481130 0.46433041
## 384  0.264912281  0.216194332 0.3068652 0.9408100 0.2476751 0.46404003
## 230  0.264035088  0.215317139 0.3066116 0.9406250 0.2472366 0.46375000
## 74   0.263157895  0.214439946 0.3063584 0.9404389 0.2467973 0.46346034
## 494  0.262280702  0.213562753 0.3061056 0.9402516 0.2463572 0.46317104
## 1318 0.261403509  0.212685560 0.3058533 0.9400631 0.2459163 0.46288210
## 1327 0.260526316  0.211808367 0.3056013 0.9398734 0.2454747 0.46259352
## 428  0.259649123  0.210931174 0.3053498 0.9396825 0.2450323 0.46230530
## 1120 0.258771930  0.210053981 0.3050987 0.9394904 0.2445891 0.46201743
## 352  0.257894737  0.209176788 0.3048480 0.9392971 0.2441451 0.46172993
## 273  0.257017544  0.208299595 0.3045977 0.9391026 0.2437003 0.46144279
## 537  0.256140351  0.207422402 0.3043478 0.9389068 0.2432546 0.46115600
## 1449 0.255263158  0.206545209 0.3040984 0.9387097 0.2428080 0.46086957
## 706  0.254385965  0.205668016 0.3038493 0.9385113 0.2423606 0.46058349
## 802  0.253508772  0.204790823 0.3036007 0.9383117 0.2419123 0.46029777
## 594  0.252631579  0.203913630 0.3033524 0.9381107 0.2414632 0.46001240
## 1441 0.251754386  0.203036437 0.3031046 0.9379085 0.2410131 0.45972739
## 261  0.251754386  0.205600540 0.3036735 0.9409836 0.2446571 0.46068111
## 791  0.250877193  0.204723347 0.3034258 0.9407895 0.2442152 0.46039604
## 943  0.250000000  0.203846154 0.3031785 0.9405941 0.2437725 0.46011132
## 920  0.249122807  0.202968961 0.3029316 0.9403974 0.2433289 0.45982695
## 1025 0.248245614  0.202091768 0.3026851 0.9401993 0.2428844 0.45954293
## 1082 0.247368421  0.201214575 0.3024390 0.9400000 0.2424390 0.45925926
## 1395 0.246491228  0.200337382 0.3021933 0.9397993 0.2419927 0.45897594
## 911  0.245614035  0.199460189 0.3019481 0.9395973 0.2415454 0.45869297
## 244  0.244736842  0.198582996 0.3017032 0.9393939 0.2410971 0.45841035
## 121  0.244736842  0.201147099 0.3022690 0.9425676 0.2448366 0.45935961
## 701  0.243859649  0.200269906 0.3020243 0.9423729 0.2443972 0.45907692
## 473  0.242982456  0.199392713 0.3017799 0.9421769 0.2439568 0.45879459
## 1484 0.242105263  0.198515520 0.3015360 0.9419795 0.2435155 0.45851260
## 994  0.241228070  0.197638327 0.3012924 0.9417808 0.2430732 0.45823096
## 1519 0.240350877  0.196761134 0.3010492 0.9415808 0.2426300 0.45794966
## 357  0.240350877  0.199325236 0.3016129 0.9448276 0.2464405 0.45889571
## 341  0.239473684  0.198448043 0.3013699 0.9446367 0.2460065 0.45861435
## 1276 0.238596491  0.197570850 0.3011272 0.9444444 0.2455717 0.45833333
## 15   0.237719298  0.196693657 0.3008850 0.9442509 0.2451358 0.45805266
## 1227 0.236842105  0.195816464 0.3006431 0.9440559 0.2446990 0.45777234
## 1020 0.235964912  0.194939271 0.3004016 0.9438596 0.2442613 0.45749235
## 957  0.235087719  0.194062078 0.3001605 0.9436620 0.2438225 0.45721271
## 1149 0.234210526  0.193184885 0.2999198 0.9434629 0.2433827 0.45693341
## 1429 0.233333333  0.192307692 0.2996795 0.9432624 0.2429419 0.45665446
## 737  0.232456140  0.191430499 0.2994396 0.9430605 0.2425000 0.45637584
## 268  0.231578947  0.190553306 0.2992000 0.9428571 0.2420571 0.45609756
## 432  0.230701754  0.189676113 0.2989608 0.9426523 0.2416132 0.45581962
## 1524 0.229824561  0.188798920 0.2987220 0.9424460 0.2411681 0.45554202
## 1487 0.228947368  0.187921727 0.2984836 0.9422383 0.2407219 0.45526476
## 1163 0.228070175  0.187044534 0.2982456 0.9420290 0.2402746 0.45498783
## 1245 0.227192982  0.186167341 0.2980080 0.9418182 0.2398261 0.45471125
## 1485 0.226315789  0.185290148 0.2977707 0.9416058 0.2393765 0.45443499
## 1434 0.225438596  0.184412955 0.2975338 0.9413919 0.2389258 0.45415908
## 897  0.224561404  0.183535762 0.2972973 0.9411765 0.2384738 0.45388350
## 922  0.223684211  0.182658570 0.2970612 0.9409594 0.2380206 0.45360825
## 921  0.222807018  0.181781377 0.2968254 0.9407407 0.2375661 0.45333333
## 532  0.221929825  0.180904184 0.2965900 0.9405204 0.2371105 0.45305875
## 1310 0.221052632  0.180026991 0.2963550 0.9402985 0.2366535 0.45278450
## 663  0.220175439  0.179149798 0.2961203 0.9400749 0.2361953 0.45251059
## 474  0.219298246  0.178272605 0.2958861 0.9398496 0.2357357 0.45223700
## 1118 0.218421053  0.177395412 0.2956522 0.9396226 0.2352748 0.45196375
## 784  0.217543860  0.176518219 0.2954186 0.9393939 0.2348126 0.45169082
## 1393 0.216666667  0.175641026 0.2951855 0.9391635 0.2343490 0.45141823
## 1086 0.215789474  0.174763833 0.2949527 0.9389313 0.2338840 0.45114596
## 151  0.214912281  0.173886640 0.2947203 0.9386973 0.2334176 0.45087402
## 478  0.214912281  0.176450742 0.2952756 0.9423077 0.2375833 0.45180723
## 636  0.214035088  0.175573549 0.2950433 0.9420849 0.2371282 0.45153522
## 173  0.213157895  0.174696356 0.2948113 0.9418605 0.2366718 0.45126354
## 387  0.212280702  0.173819163 0.2945797 0.9416342 0.2362140 0.45099218
## 1076 0.211403509  0.172941970 0.2943485 0.9414062 0.2357548 0.45072115
## 669  0.210526316  0.172064777 0.2941176 0.9411765 0.2352941 0.45045045
## 353  0.209649123  0.171187584 0.2938871 0.9409449 0.2348320 0.45018007
## 871  0.208771930  0.170310391 0.2936570 0.9407115 0.2343685 0.44991002
## 1193 0.207894737  0.169433198 0.2934272 0.9404762 0.2339034 0.44964029
## 1123 0.207017544  0.168556005 0.2931978 0.9402390 0.2334369 0.44937088
## 1233 0.206140351  0.167678812 0.2929688 0.9400000 0.2329687 0.44910180
## 873  0.205263158  0.166801619 0.2927400 0.9397590 0.2324991 0.44883303
## 1321 0.204385965  0.165924426 0.2925117 0.9395161 0.2320278 0.44856459
## 509  0.203508772  0.165047233 0.2922837 0.9392713 0.2315550 0.44829647
## 1367 0.202631579  0.164170040 0.2920561 0.9390244 0.2310805 0.44802867
## 556  0.201754386  0.163292848 0.2918288 0.9387755 0.2306043 0.44776119
## 1255 0.200877193  0.162415655 0.2916019 0.9385246 0.2301265 0.44749403
## 84   0.200000000  0.161538462 0.2913753 0.9382716 0.2296469 0.44722719
## 572  0.199122807  0.160661269 0.2911491 0.9380165 0.2291656 0.44696067
## 591  0.198245614  0.159784076 0.2909232 0.9377593 0.2286825 0.44669446
## 1315 0.197368421  0.158906883 0.2906977 0.9375000 0.2281977 0.44642857
## 89   0.197368421  0.161470985 0.2912471 0.9414226 0.2326697 0.44735277
## 944  0.196491228  0.160593792 0.2910217 0.9411765 0.2321981 0.44708680
## 941  0.195614035  0.159716599 0.2907966 0.9409283 0.2317249 0.44682115
## 1426 0.194736842  0.158839406 0.2905719 0.9406780 0.2312498 0.44655582
## 1274 0.193859649  0.157962213 0.2903475 0.9404255 0.2307730 0.44629080
## 347  0.192982456  0.157085020 0.2901235 0.9401709 0.2302944 0.44602610
## 935  0.192982456  0.159649123 0.2906708 0.9442060 0.2348768 0.44694724
## 243  0.192105263  0.158771930 0.2904468 0.9439655 0.2344124 0.44668246
## 1523 0.191228070  0.157894737 0.2902232 0.9437229 0.2339462 0.44641800
## 1468 0.190350877  0.157017544 0.2900000 0.9434783 0.2334783 0.44615385
## 24   0.189473684  0.156140351 0.2897771 0.9432314 0.2330085 0.44589001
## 1406 0.188596491  0.155263158 0.2895545 0.9429825 0.2325370 0.44562648
## 1230 0.187719298  0.154385965 0.2893323 0.9427313 0.2320636 0.44536326
## 918  0.186842105  0.153508772 0.2891104 0.9424779 0.2315883 0.44510035
## 454  0.185964912  0.152631579 0.2888889 0.9422222 0.2311111 0.44483776
## 978  0.185087719  0.151754386 0.2886677 0.9419643 0.2306320 0.44457547
## 787  0.184210526  0.150877193 0.2884468 0.9417040 0.2301509 0.44431349
## 1410 0.183333333  0.150000000 0.2882263 0.9414414 0.2296677 0.44405183
## 898  0.182456140  0.149122807 0.2880061 0.9411765 0.2291826 0.44379046
## 983  0.181578947  0.148245614 0.2877863 0.9409091 0.2286954 0.44352941
## 420  0.180701754  0.147368421 0.2875667 0.9406393 0.2282060 0.44326867
## 937  0.179824561  0.146491228 0.2873476 0.9403670 0.2277145 0.44300823
## 377  0.178947368  0.145614035 0.2871287 0.9400922 0.2272209 0.44274809
## 1246 0.178070175  0.144736842 0.2869102 0.9398148 0.2267250 0.44248826
## 585  0.177192982  0.143859649 0.2866920 0.9395349 0.2262269 0.44222874
## 1125 0.176315789  0.142982456 0.2864742 0.9392523 0.2257265 0.44196952
## 463  0.175438596  0.142105263 0.2862566 0.9389671 0.2252238 0.44171060
## 915  0.174561404  0.141228070 0.2860395 0.9386792 0.2247187 0.44145199
## 653  0.173684211  0.140350877 0.2858226 0.9383886 0.2242112 0.44119368
## 827  0.172807018  0.139473684 0.2856061 0.9380952 0.2237013 0.44093567
## 315  0.171929825  0.138596491 0.2853899 0.9377990 0.2231889 0.44067797
## 159  0.171052632  0.137719298 0.2851740 0.9375000 0.2226740 0.44042056
## 1283 0.170175439  0.136842105 0.2849584 0.9371981 0.2221565 0.44016346
## 615  0.169298246  0.135964912 0.2847432 0.9368932 0.2216364 0.43990665
## 721  0.169298246  0.138529015 0.2852830 0.9414634 0.2267464 0.44081633
## 1431 0.168421053  0.137651822 0.2850679 0.9411765 0.2262443 0.44055944
## 531  0.167543860  0.136774629 0.2848531 0.9408867 0.2257398 0.44030285
## 496  0.166666667  0.135897436 0.2846386 0.9405941 0.2252326 0.44004657
## 1344 0.165789474  0.135020243 0.2844244 0.9402985 0.2247229 0.43979058
## 573  0.164912281  0.134143050 0.2842105 0.9400000 0.2242105 0.43953488
## 425  0.164035088  0.133265857 0.2839970 0.9396985 0.2236955 0.43927949
## 1453 0.163157895  0.132388664 0.2837838 0.9393939 0.2231777 0.43902439
## 778  0.162280702  0.131511471 0.2835709 0.9390863 0.2226572 0.43876959
## 1224 0.161403509  0.130634278 0.2833583 0.9387755 0.2221338 0.43851508
## 397  0.160526316  0.129757085 0.2831461 0.9384615 0.2216076 0.43826087
## 657  0.159649123  0.128879892 0.2829341 0.9381443 0.2210785 0.43800695
## 35   0.158771930  0.128002699 0.2827225 0.9378238 0.2205463 0.43775333
## 992  0.157894737  0.127125506 0.2825112 0.9375000 0.2200112 0.43750000
## 472  0.157017544  0.126248313 0.2823002 0.9371728 0.2194730 0.43724696
## 1019 0.156140351  0.125371120 0.2820896 0.9368421 0.2189317 0.43699422
## 880  0.155263158  0.124493927 0.2818792 0.9365079 0.2183871 0.43674177
## 140  0.154385965  0.123616734 0.2816692 0.9361702 0.2178394 0.43648961
## 210  0.153508772  0.122739541 0.2814594 0.9358289 0.2172883 0.43623774
## 1303 0.152631579  0.121862348 0.2812500 0.9354839 0.2167339 0.43598616
## 614  0.151754386  0.120985155 0.2810409 0.9351351 0.2161760 0.43573487
## 1196 0.150877193  0.120107962 0.2808321 0.9347826 0.2156147 0.43548387
## 839  0.150000000  0.119230769 0.2806236 0.9344262 0.2150498 0.43523316
## 1475 0.149122807  0.118353576 0.2804154 0.9340659 0.2144814 0.43498274
## 1231 0.148245614  0.117476383 0.2802076 0.9337017 0.2139092 0.43473260
## 1014 0.147368421  0.116599190 0.2800000 0.9333333 0.2133333 0.43448276
## 1175 0.147368421  0.119163293 0.2805329 0.9385475 0.2190804 0.43538196
## 262  0.146491228  0.118286100 0.2803254 0.9382022 0.2185277 0.43513203
## 691  0.146491228  0.120850202 0.2808574 0.9435028 0.2243602 0.43602983
## 487  0.146491228  0.123414305 0.2813885 0.9488636 0.2302521 0.43692661
## 1039 0.145614035  0.122537112 0.2811808 0.9485714 0.2297522 0.43667622
## 1465 0.144736842  0.121659919 0.2809735 0.9482759 0.2292493 0.43642612
## 1381 0.143859649  0.120782726 0.2807664 0.9479769 0.2287433 0.43617630
## 413  0.142982456  0.119905533 0.2805596 0.9476744 0.2282341 0.43592677
## 450  0.142982456  0.122469636 0.2810890 0.9532164 0.2343054 0.43682104
## 861  0.142105263  0.121592443 0.2808824 0.9529412 0.2338235 0.43657143
## 302  0.142105263  0.124156545 0.2814107 0.9585799 0.2399906 0.43746431
## 1486 0.141228070  0.123279352 0.2812041 0.9583333 0.2395374 0.43721461
## 638  0.140350877  0.122402159 0.2809978 0.9580838 0.2390816 0.43696520
## 1435 0.139473684  0.121524966 0.2807918 0.9578313 0.2386231 0.43671608
## 451  0.138596491  0.120647773 0.2805861 0.9575758 0.2381618 0.43646724
## 1007 0.138596491  0.123211876 0.2811127 0.9634146 0.2445274 0.43735763
## 476  0.137719298  0.122334683 0.2809071 0.9631902 0.2440973 0.43710871
## 1361 0.136842105  0.121457490 0.2807018 0.9629630 0.2436647 0.43686007
## 175  0.135964912  0.120580297 0.2804967 0.9627329 0.2432296 0.43661171
## 170  0.135087719  0.119703104 0.2802920 0.9625000 0.2427920 0.43636364
## 1000 0.134210526  0.118825911 0.2800875 0.9622642 0.2423517 0.43611584
## 55   0.133333333  0.117948718 0.2798834 0.9620253 0.2419087 0.43586833
## 786  0.132456140  0.117071525 0.2796795 0.9617834 0.2414630 0.43562110
## 1116 0.131578947  0.116194332 0.2794760 0.9615385 0.2410144 0.43537415
## 422  0.130701754  0.115317139 0.2792727 0.9612903 0.2405630 0.43512748
## 593  0.129824561  0.114439946 0.2790698 0.9610390 0.2401087 0.43488109
## 1525 0.128947368  0.113562753 0.2788671 0.9607843 0.2396514 0.43463497
## 740  0.128070175  0.112685560 0.2786647 0.9605263 0.2391910 0.43438914
## 1111 0.127192982  0.111808367 0.2784627 0.9602649 0.2387276 0.43414358
## 904  0.126315789  0.110931174 0.2782609 0.9600000 0.2382609 0.43389831
## 1463 0.125438596  0.110053981 0.2780594 0.9597315 0.2377909 0.43365330
## 1529 0.124561404  0.109176788 0.2778582 0.9594595 0.2373176 0.43340858
## 1202 0.123684211  0.108299595 0.2776573 0.9591837 0.2368409 0.43316413
## 9    0.122807018  0.107422402 0.2774566 0.9589041 0.2363608 0.43291995
## 655  0.121929825  0.106545209 0.2772563 0.9586207 0.2358770 0.43267606
## 1024 0.121052632  0.105668016 0.2770563 0.9583333 0.2353896 0.43243243
## 1396 0.120175439  0.104790823 0.2768565 0.9580420 0.2348985 0.43218908
## 1228 0.119298246  0.103913630 0.2766571 0.9577465 0.2344035 0.43194601
## 1309 0.118421053  0.103036437 0.2764579 0.9574468 0.2339047 0.43170320
## 376  0.117543860  0.102159244 0.2762590 0.9571429 0.2334018 0.43146067
## 516  0.116666667  0.101282051 0.2760604 0.9568345 0.2328949 0.43121842
## 797  0.115789474  0.100404858 0.2758621 0.9565217 0.2323838 0.43097643
## 1068 0.114912281  0.099527665 0.2756640 0.9562044 0.2318684 0.43073472
## 147  0.114035088  0.098650472 0.2754663 0.9558824 0.2313486 0.43049327
## 1407 0.113157895  0.097773279 0.2752688 0.9555556 0.2308244 0.43025210
## 274  0.112280702  0.096896086 0.2750716 0.9552239 0.2302955 0.43001120
## 1325 0.111403509  0.096018893 0.2748747 0.9548872 0.2297619 0.42977057
## 44   0.110526316  0.095141700 0.2746781 0.9545455 0.2292236 0.42953020
## 1448 0.109649123  0.094264507 0.2744818 0.9541985 0.2286802 0.42929011
## 1488 0.108771930  0.093387314 0.2742857 0.9538462 0.2281319 0.42905028
## 410  0.107894737  0.092510121 0.2740899 0.9534884 0.2275783 0.42881072
## 1385 0.107017544  0.091632928 0.2738944 0.9531250 0.2270194 0.42857143
## 676  0.106140351  0.090755735 0.2736992 0.9527559 0.2264551 0.42833240
## 47   0.105263158  0.089878543 0.2735043 0.9523810 0.2258852 0.42809365
## 788  0.104385965  0.089001350 0.2733096 0.9520000 0.2253096 0.42785515
## 1319 0.103508772  0.088124157 0.2731152 0.9516129 0.2247281 0.42761693
## 878  0.102631579  0.087246964 0.2729211 0.9512195 0.2241406 0.42737896
## 1001 0.101754386  0.086369771 0.2727273 0.9508197 0.2235469 0.42714127
## 1103 0.100877193  0.085492578 0.2725337 0.9504132 0.2229469 0.42690384
## 351  0.100000000  0.084615385 0.2723404 0.9500000 0.2223404 0.42666667
## 1209 0.100000000  0.087179487 0.2728561 0.9579832 0.2308393 0.42754026
## 1144 0.099122807  0.086302294 0.2726629 0.9576271 0.2302900 0.42730300
## 1159 0.098245614  0.085425101 0.2724699 0.9572650 0.2297349 0.42706600
## 134  0.097368421  0.084547908 0.2722772 0.9568966 0.2291738 0.42682927
## 662  0.096491228  0.083670715 0.2720848 0.9565217 0.2286065 0.42659280
## 525  0.095614035  0.082793522 0.2718927 0.9561404 0.2280330 0.42635659
## 1141 0.094736842  0.081916329 0.2717008 0.9557522 0.2274530 0.42612064
## 1229 0.093859649  0.081039136 0.2715092 0.9553571 0.2268663 0.42588496
## 908  0.092982456  0.080161943 0.2713178 0.9549550 0.2262728 0.42564953
## 647  0.092105263  0.079284750 0.2711268 0.9545455 0.2256722 0.42541436
## 1128 0.092105263  0.081848853 0.2716397 0.9633028 0.2349424 0.42628382
## 799  0.091228070  0.080971660 0.2714487 0.9629630 0.2344116 0.42604857
## 414  0.090350877  0.080094467 0.2712579 0.9626168 0.2338747 0.42581357
## 1203 0.089473684  0.079217274 0.2710674 0.9622642 0.2333316 0.42557883
## 553  0.088596491  0.078340081 0.2708772 0.9619048 0.2327820 0.42534435
## 247  0.087719298  0.077462888 0.2706872 0.9615385 0.2322257 0.42511013
## 741  0.086842105  0.076585695 0.2704975 0.9611650 0.2316626 0.42487617
## 1411 0.085964912  0.075708502 0.2703081 0.9607843 0.2310924 0.42464246
## 477  0.085964912  0.078272605 0.2708188 0.9702970 0.2411158 0.42550852
## 661  0.085087719  0.077395412 0.2706294 0.9700000 0.2406294 0.42527473
## 1458 0.084210526  0.076518219 0.2704403 0.9696970 0.2401372 0.42504119
## 1080 0.083333333  0.075641026 0.2702514 0.9693878 0.2396392 0.42480790
## 820  0.082456140  0.074763833 0.2700628 0.9690722 0.2391350 0.42457488
## 734  0.081578947  0.073886640 0.2698745 0.9687500 0.2386245 0.42434211
## 467  0.080701754  0.073009447 0.2696864 0.9684211 0.2381075 0.42410959
## 1507 0.079824561  0.072132254 0.2694986 0.9680851 0.2375837 0.42387733
## 51   0.078947368  0.071255061 0.2693111 0.9677419 0.2370530 0.42364532
## 471  0.078070175  0.070377868 0.2691238 0.9673913 0.2365151 0.42341357
## 634  0.077192982  0.069500675 0.2689368 0.9670330 0.2359697 0.42318207
## 868  0.076315789  0.068623482 0.2687500 0.9666667 0.2354167 0.42295082
## 1234 0.075438596  0.067746289 0.2685635 0.9662921 0.2348556 0.42271983
## 27   0.075438596  0.070310391 0.2690707 0.9772727 0.2463435 0.42358079
## 245  0.074561404  0.069433198 0.2688843 0.9770115 0.2458958 0.42334970
## 513  0.073684211  0.068556005 0.2686981 0.9767442 0.2454422 0.42311887
## 317  0.072807018  0.067678812 0.2685121 0.9764706 0.2449827 0.42288828
## 626  0.071929825  0.066801619 0.2683264 0.9761905 0.2445169 0.42265795
## 469  0.071052632  0.065924426 0.2681410 0.9759036 0.2440446 0.42242787
## 1067 0.070175439  0.065047233 0.2679558 0.9756098 0.2435656 0.42219804
## 539  0.069298246  0.064170040 0.2677709 0.9753086 0.2430795 0.42196846
## 782  0.068421053  0.063292848 0.2675862 0.9750000 0.2425862 0.42173913
## 429  0.067543860  0.062415655 0.2674018 0.9746835 0.2420853 0.42151005
## 503  0.066666667  0.061538462 0.2672176 0.9743590 0.2415766 0.42128122
## 1332 0.066666667  0.064102564 0.2677220 0.9870130 0.2547349 0.42213782
## 715  0.065789474  0.063225371 0.2675378 0.9868421 0.2543799 0.42190889
## 1164 0.064912281  0.062348178 0.2673540 0.9866667 0.2540206 0.42168022
## 1408 0.064035088  0.061470985 0.2671703 0.9864865 0.2536568 0.42145179
## 672  0.063157895  0.060593792 0.2669870 0.9863014 0.2532883 0.42122361
## 735  0.062280702  0.059716599 0.2668038 0.9861111 0.2529150 0.42099567
## 1198 0.061403509  0.058839406 0.2666210 0.9859155 0.2525365 0.42076798
## 901  0.060526316  0.057962213 0.2664384 0.9857143 0.2521526 0.42054054
## 710  0.059649123  0.057085020 0.2662560 0.9855072 0.2517632 0.42031334
## 890  0.058771930  0.056207827 0.2660739 0.9852941 0.2513680 0.42008639
## 909  0.057894737  0.055330634 0.2658920 0.9850746 0.2509666 0.41985969
## 17   0.057894737  0.057894737 0.2663934 1.0000000 0.2663934 0.42071197
## 303  0.057017544  0.057017544 0.2662116 1.0000000 0.2662116 0.42048518
## 1433 0.056140351  0.056140351 0.2660300 1.0000000 0.2660300 0.42025862
## 1081 0.055263158  0.055263158 0.2658487 1.0000000 0.2658487 0.42003231
## 960  0.054385965  0.054385965 0.2656676 1.0000000 0.2656676 0.41980624
## 409  0.053508772  0.053508772 0.2654867 1.0000000 0.2654867 0.41958042
## 225  0.052631579  0.052631579 0.2653061 1.0000000 0.2653061 0.41935484
## 917  0.051754386  0.051754386 0.2651258 1.0000000 0.2651258 0.41912950
## 1160 0.050877193  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440
## 1482 0.050000000  0.050000000 0.2647658 1.0000000 0.2647658 0.41867955
## 10   0.049122807  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494
## 619  0.048245614  0.048245614 0.2644068 1.0000000 0.2644068 0.41823056
## 544  0.047368421  0.047368421 0.2642276 1.0000000 0.2642276 0.41800643
## 1043 0.046491228  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254
## 1517 0.045614035  0.045614035 0.2638701 1.0000000 0.2638701 0.41755889
## 819  0.044736842  0.044736842 0.2636917 1.0000000 0.2636917 0.41733547
## 702  0.043859649  0.043859649 0.2635135 1.0000000 0.2635135 0.41711230
## 3    0.042982456  0.042982456 0.2633356 1.0000000 0.2633356 0.41688936
## 324  0.042105263  0.042105263 0.2631579 1.0000000 0.2631579 0.41666667
## 660  0.041228070  0.041228070 0.2629804 1.0000000 0.2629804 0.41644421
## 1152 0.040350877  0.040350877 0.2628032 1.0000000 0.2628032 0.41622199
## 455  0.039473684  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000
## 1457 0.038596491  0.038596491 0.2624495 1.0000000 0.2624495 0.41577825
## 1511 0.037719298  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674
## 499  0.036842105  0.036842105 0.2620968 1.0000000 0.2620968 0.41533546
## 1345 0.035964912  0.035964912 0.2619208 1.0000000 0.2619208 0.41511442
## 1405 0.035087719  0.035087719 0.2617450 1.0000000 0.2617450 0.41489362
## 1201 0.034210526  0.034210526 0.2615694 1.0000000 0.2615694 0.41467305
## 1363 0.033333333  0.033333333 0.2613941 1.0000000 0.2613941 0.41445271
## 1447 0.032456140  0.032456140 0.2612190 1.0000000 0.2612190 0.41423261
## 555  0.031578947  0.031578947 0.2610442 1.0000000 0.2610442 0.41401274
## 418  0.030701754  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310
## 1280 0.029824561  0.029824561 0.2606952 1.0000000 0.2606952 0.41357370
## 958  0.028947368  0.028947368 0.2605210 1.0000000 0.2605210 0.41335453
## 755  0.028070175  0.028070175 0.2603471 1.0000000 0.2603471 0.41313559
## 1513 0.027192982  0.027192982 0.2601734 1.0000000 0.2601734 0.41291689
## 1527 0.026315789  0.026315789 0.2600000 1.0000000 0.2600000 0.41269841
## 412  0.025438596  0.025438596 0.2598268 1.0000000 0.2598268 0.41248017
## 1308 0.024561404  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216
## 883  0.023684211  0.023684211 0.2594810 1.0000000 0.2594810 0.41204437
## 1329 0.022807018  0.022807018 0.2593085 1.0000000 0.2593085 0.41182682
## 949  0.021929825  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950
## 1165 0.021052632  0.021052632 0.2589641 1.0000000 0.2589641 0.41139241
## 1317 0.020175439  0.020175439 0.2587923 1.0000000 0.2587923 0.41117554
## 754  0.019298246  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890
## 673  0.018421053  0.018421053 0.2584493 1.0000000 0.2584493 0.41074250
## 1282 0.017543860  0.017543860 0.2582781 1.0000000 0.2582781 0.41052632
## 633  0.016666667  0.016666667 0.2581072 1.0000000 0.2581072 0.41031036
## 1065 0.015789474  0.015789474 0.2579365 1.0000000 0.2579365 0.41009464
## 21   0.014912281  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914
## 1041 0.014035088  0.014035088 0.2575958 1.0000000 0.2575958 0.40966387
## 981  0.013157895  0.013157895 0.2574257 1.0000000 0.2574257 0.40944882
## 823  0.012280702  0.012280702 0.2572559 1.0000000 0.2572559 0.40923400
## 1322 0.011403509  0.011403509 0.2570864 1.0000000 0.2570864 0.40901940
## 549  0.010526316  0.010526316 0.2569170 1.0000000 0.2569170 0.40880503
## 1083 0.009649123  0.009649123 0.2567479 1.0000000 0.2567479 0.40859089
## 1365 0.008771930  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696
## 712  0.007894737  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327
## 1512 0.007017544  0.007017544 0.2562418 1.0000000 0.2562418 0.40794979
## 37   0.006140351  0.006140351 0.2560735 1.0000000 0.2560735 0.40773654
## 1472 0.005263158  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351
## 836  0.004385965  0.004385965 0.2557377 1.0000000 0.2557377 0.40731070
## 796  0.003508772  0.003508772 0.2555701 1.0000000 0.2555701 0.40709812
## 629  0.002631579  0.002631579 0.2554028 1.0000000 0.2554028 0.40688576
## 654  0.001754386  0.001754386 0.2552356 1.0000000 0.2552356 0.40667362
## 552  0.000877193  0.000877193 0.2550687 1.0000000 0.2550687 0.40646170
## 350  0.000000000  0.000000000 0.2549020 0.0000000       NaN 0.40625000
##             MCC         FPR           PG           RG
## 726  0.04372365 0.000000000 1.0000000000 0.0000000000
## 482  0.06185481 0.000000000 1.0000000000 0.0000000000
## 481  0.07578116 0.000000000 1.0000000000 0.0000000000
## 32   0.08753321 0.000000000 1.0000000000 0.0000000000
## 1050 0.09789718 0.000000000 1.0000000000 0.0000000000
## 1414 0.10727617 0.000000000 1.0000000000 0.0000000000
## 1131 0.09368628 0.000877193 0.6928034372 0.0000000000
## 1294 0.10315843 0.000877193 0.7282072368 0.0000000000
## 812  0.11190350 0.000877193 0.7563352827 0.0000000000
## 114  0.12006340 0.000877193 0.7792105263 0.0000000000
## 974  0.12774013 0.000877193 0.7981731187 0.0000000000
## 1491 0.13500972 0.000877193 0.8141447368 0.0000000000
## 91   0.14193052 0.000877193 0.8277795079 0.0000000000
## 1298 0.14854840 0.000877193 0.8395542427 0.0000000000
## 362  0.15490019 0.000877193 0.8498245614 0.0000000000
## 486  0.16101591 0.000877193 0.8588610197 0.0000000000
## 1380 0.15261299 0.001754386 0.7430340557 0.0000000000
## 767  0.14481678 0.002631579 0.6469298246 0.0000000000
## 145  0.15109140 0.002631579 0.6636535938 0.0000000000
## 11   0.14394873 0.003508772 0.5852631579 0.0000000000
## 241  0.13724044 0.004385965 0.5184389545 0.0000000000
## 1452 0.14351611 0.004385965 0.5370269682 0.0000000000
## 143  0.14959140 0.004385965 0.5542732066 0.0000000000
## 1495 0.15548331 0.004385965 0.5703125000 0.0000000000
## 1293 0.16120670 0.004385965 0.5852631579 0.0000000000
## 1469 0.15517091 0.005263158 0.5309872314 0.0000000000
## 1417 0.16080800 0.005263158 0.5458089669 0.0000000000
## 49   0.16629981 0.005263158 0.5597475832 0.0000000000
## 1061 0.16065841 0.006140351 0.5128606296 0.0000000000
## 310  0.15525348 0.007017544 0.4708771930 0.0000000000
## 1217 0.16071099 0.007017544 0.4849663180 0.0000000000
## 725  0.16604163 0.007017544 0.4983552632 0.0000000000
## 491  0.16092955 0.007894737 0.4610700304 0.0000000000
## 282  0.16617905 0.007894737 0.4740712074 0.0000000000
## 1127 0.17131684 0.007894737 0.4864876477 0.0000000000
## 684  0.17634935 0.007894737 0.4983552632 0.0000000000
## 439  0.18128244 0.007894737 0.5097074315 0.0000000000
## 438  0.18612150 0.007894737 0.5205751567 0.0000000000
## 510  0.18135589 0.008771930 0.4876985363 0.0000000000
## 1413 0.18613788 0.008771930 0.4983552632 0.0000000000
## 153  0.19083522 0.008771930 0.5085945083 0.0000000000
## 1509 0.18627337 0.009649123 0.4786519871 0.0000000000
## 285  0.19091785 0.009649123 0.4886852068 0.0000000000
## 1300 0.19548563 0.009649123 0.4983552632 0.0000000000
## 761  0.19998023 0.009649123 0.5076803119 0.0000000000
## 1420 0.20440494 0.009649123 0.5166774450 0.0000000000
## 926  0.20876280 0.009649123 0.5253627505 0.0000000000
## 1312 0.20445344 0.010526316 0.4983552632 0.0000000000
## 1053 0.20877138 0.010526316 0.5069159780 0.0000000000
## 1051 0.21302792 0.010526316 0.5152000000 0.0000000000
## 86   0.21722553 0.010526316 0.5232198142 0.0000000000
## 292  0.21308965 0.011403509 0.4983552632 0.0000000000
## 1290 0.21725195 0.011403509 0.5062674486 0.0000000000
## 602  0.22135978 0.011403509 0.5139430366 0.0000000000
## 78   0.21735899 0.012280702 0.4907872988 0.0000000000
## 850  0.22143343 0.012280702 0.4983552632 0.0000000000
## 687  0.22545732 0.012280702 0.5057102590 0.0000000000
## 1496 0.22943248 0.012280702 0.5128606296 0.0000000000
## 1249 0.23336060 0.012280702 0.5198143304 0.0000000000
## 87   0.22951700 0.013157895 0.4983552632 0.0000000000
## 1497 0.23341683 0.013157895 0.5052263823 0.0000000000
## 226  0.23727273 0.013157895 0.5119187798 0.0000000000
## 1188 0.23353834 0.014035088 0.4917452361 0.0000000000
## 34   0.22987614 0.014912281 0.4725727282 0.0000000000
## 174  0.23371929 0.014912281 0.4792525693 0.0000000000
## 236  0.23752132 0.014912281 0.4857727998 0.0000000000
## 1030 0.23395448 0.015789474 0.4676460588 0.0000000000
## 1006 0.23772967 0.015789474 0.4740712074 0.0000000000
## 177  0.23423928 0.016666667 0.4568367990 0.0000000000
## 213  0.23798780 0.016666667 0.4631632653 0.0000000000
## 1071 0.23456956 0.017543860 0.4467471993 0.0000000000
## 567  0.23829164 0.017543860 0.4529727096 0.0000000000
## 1476 0.23494162 0.018421053 0.4373092611 0.0000000000
## 218  0.23863753 0.018421053 0.4434325862 0.0000000000
## 29   0.24229829 0.018421053 0.4494315789 0.0000000000
## 1287 0.23902219 0.019298246 0.4344838898 0.0000000000
## 1342 0.24265815 0.019298246 0.4403866810 0.0000000000
## 975  0.24626095 0.019298246 0.4461746081 0.0000000000
## 1087 0.24983146 0.019298246 0.4518506650 0.0000000000
## 804  0.25337055 0.019298246 0.4574177632 0.0000000000
## 807  0.25687904 0.019298246 0.4628787332 0.0000000000
## 925  0.26035773 0.019298246 0.4682363255 0.0000000000
## 1213 0.26380737 0.019298246 0.4734932119 0.0000000000
## 1214 0.26722869 0.019298246 0.4786519871 0.0000000000
## 374  0.26407509 0.020175439 0.4645201238 0.0000000000
## 688  0.26747779 0.020175439 0.4696172896 0.0000000000
## 857  0.26437748 0.021052632 0.4560360473 0.0000000000
## 126  0.26132024 0.021929825 0.4429473412 0.0000000000
## 275  0.25830490 0.022807018 0.4303284407 0.0000000000
## 1335 0.26170421 0.022807018 0.4353996101 0.0000000000
## 574  0.25873639 0.023684211 0.4232389935 0.0000000000
## 1432 0.25580775 0.024561404 0.4115013431 0.0000000000
## 535  0.25291727 0.025438596 0.4001679537 0.0000000000
## 1278 0.25006397 0.026315789 0.3892211289 0.0000000000
## 1088 0.25346156 0.026315789 0.3942265636 0.0000000000
## 216  0.25064948 0.027192982 0.3836434348 0.0000000000
## 196  0.24787230 0.028070175 0.3734106762 0.0000000000
## 1215 0.25125439 0.028070175 0.3783292049 0.0000000000
## 844  0.25461191 0.028070175 0.3831778712 0.0000000000
## 932  0.25794540 0.028070175 0.3879578947 0.0000000000
## 107  0.25521547 0.028947368 0.3780331134 0.0000000000
## 82   0.25251769 0.029824561 0.3684210526 0.0000000000
## 1216 0.25583645 0.029824561 0.3731191491 0.0000000000
## 608  0.25913235 0.029824561 0.3777542043 0.0000000000
## 441  0.26240587 0.029824561 0.3823272467 0.0000000000
## 306  0.26565746 0.029824561 0.3868392947 0.0000000000
## 305  0.26888757 0.029824561 0.3912913562 0.0000000000
## 945  0.26624141 0.030701754 0.3819376760 0.0000000000
## 1252 0.26362436 0.031578947 0.3728598071 0.0000000000
## 80   0.26684165 0.031578947 0.3772422793 0.0000000000
## 433  0.26425676 0.032456140 0.3684210526 0.0000000000
## 183  0.26745730 0.032456140 0.3727405847 0.0000000000
## 189  0.26490348 0.033333333 0.3641632078 0.0000000000
## 26   0.26808753 0.033333333 0.3684210526 0.0000000000
## 972  0.27125200 0.033333333 0.3726275992 0.0000000000
## 1281 0.26873157 0.034210526 0.3642730302 0.0000000000
## 601  0.27188026 0.034210526 0.3684210526 0.0000000000
## 1210 0.27501015 0.034210526 0.3725203738 0.0000000000
## 64   0.27812161 0.034210526 0.3765716813 0.0000000000
## 1058 0.28121496 0.034210526 0.3805756579 0.0000000000
## 774  0.27873332 0.035087719 0.3724184787 0.0000000000
## 267  0.28181232 0.035087719 0.3763702457 0.0000000000
## 260  0.28487392 0.035087719 0.3802769863 0.0000000000
## 73   0.28242299 0.035964912 0.3723215264 0.0000000000
## 1218 0.28547080 0.035964912 0.3761785263 0.0000000000
## 172  0.28850188 0.035964912 0.3799926403 0.0000000000
## 85   0.29151651 0.035964912 0.3837644517 0.0000000000
## 146  0.29451499 0.035964912 0.3874945390 0.0000000000
## 1269 0.29210009 0.036842105 0.3797216134 0.0000000000
## 1177 0.29508596 0.036842105 0.3834070383 0.0000000000
## 92   0.29269629 0.037719298 0.3758215538 0.0000000000
## 1090 0.29566972 0.037719298 0.3794629912 0.0000000000
## 713  0.29330456 0.038596491 0.3720569727 0.0000000000
## 865  0.29096040 0.039473684 0.3648289386 0.0000000000
## 967  0.29392437 0.039473684 0.3684210526 0.0000000000
## 931  0.29687342 0.039473684 0.3719765867 0.0000000000
## 1098 0.29980777 0.039473684 0.3754959886 0.0000000000
## 1492 0.30272768 0.039473684 0.3789797035 0.0000000000
## 28   0.30563338 0.039473684 0.3824281733 0.0000000000
## 847  0.30852509 0.039473684 0.3858418367 0.0000000000
## 1126 0.31140304 0.039473684 0.3892211289 0.0000000000
## 1093 0.31426744 0.039473684 0.3925664812 0.0000000000
## 534  0.31196622 0.040350877 0.3854724591 0.0000000000
## 200  0.30968401 0.041228070 0.3785369457 0.0000000000
## 316  0.30742050 0.042105263 0.3717554290 0.0000000000
## 690  0.31027997 0.042105263 0.3750580241 0.0000000000
## 1424 0.31312642 0.042105263 0.3783292049 0.0000000000
## 732  0.31596003 0.042105263 0.3815693361 0.0005190491
## 1089 0.31878100 0.042105263 0.3847787795 0.0014154469
## 1338 0.32158952 0.042105263 0.3879578947 0.0023294924
## 201  0.32438579 0.042105263 0.3911070382 0.0032611855
## 966  0.32716997 0.042105263 0.3942265636 0.0042105263
## 335  0.32494314 0.042982456 0.3875702328 0.0042105263
## 936  0.32771816 0.042982456 0.3906589822 0.0051775148
## 168  0.33048147 0.042982456 0.3937192617 0.0061621509
## 297  0.33323326 0.042982456 0.3967514014 0.0071644348
## 53   0.33103148 0.043859649 0.3902282787 0.0071644348
## 166  0.33377458 0.043859649 0.3932315165 0.0081843662
## 1460 0.33159190 0.044736842 0.3868392947 0.0081843662
## 392  0.32942539 0.045614035 0.3805756579 0.0081843662
## 762  0.33216236 0.045614035 0.3835479869 0.0092219454
## 1373 0.33488837 0.045614035 0.3864943566 0.0102771722
## 488  0.33760356 0.045614035 0.3894150484 0.0113500467
## 238  0.33546013 0.046491228 0.3832686919 0.0113500467
## 1012 0.33333207 0.047368421 0.3772422793 0.0113500467
## 1301 0.33604135 0.047368421 0.3801330878 0.0124405689
## 679  0.33393065 0.048245614 0.3742203585 0.0124405689
## 97   0.33663171 0.048245614 0.3770838928 0.0135487387
## 808  0.33932247 0.048245614 0.3799236721 0.0146745562
## 41   0.34200306 0.048245614 0.3827399381 0.0158180214
## 443  0.34467362 0.048245614 0.3855329305 0.0169791342
## 939  0.34258649 0.049122807 0.3797216134 0.0169791342
## 779  0.34051360 0.050000000 0.3740185105 0.0169791342
## 887  0.33845474 0.050877193 0.3684210526 0.0169791342
## 650  0.33640972 0.051754386 0.3629267454 0.0169791342
## 251  0.33907881 0.051754386 0.3656846387 0.0181578947
## 36   0.33704932 0.052631579 0.3602866690 0.0181578947
## 1506 0.33503320 0.053508772 0.3549865780 0.0181578947
## 1178 0.33769636 0.053508772 0.3577143758 0.0193543029
## 500  0.33569519 0.054385965 0.3525048733 0.0193543029
## 689  0.33835061 0.054385965 0.3552073309 0.0205683588
## 279  0.33636407 0.055263158 0.3500856431 0.0205683588
## 1226 0.33439021 0.056140351 0.3450543855 0.0205683588
## 137  0.33703964 0.056140351 0.3477265944 0.0218000623
## 1454 0.33507987 0.057017544 0.3427780554 0.0218000623
## 806  0.33772171 0.057017544 0.3454255436 0.0230494135
## 447  0.34035450 0.057017544 0.3480541412 0.0243164123
## 366  0.34297835 0.057017544 0.3506640001 0.0256010589
## 323  0.34103551 0.057894737 0.3457850977 0.0256010589
## 427  0.33910458 0.058771930 0.3409892113 0.0256010589
## 1292 0.34172272 0.058771930 0.3435703373 0.0269033531
## 965  0.34433220 0.058771930 0.3461335835 0.0282232949
## 1008 0.34693310 0.058771930 0.3486790885 0.0295608845
## 148  0.34501839 0.059649123 0.3439484033 0.0295608845
## 502  0.34311509 0.060526316 0.3392961694 0.0295608845
## 1324 0.34122307 0.061403509 0.3347207304 0.0295608845
## 1057 0.34381991 0.061403509 0.3372332245 0.0309161217
## 731  0.34640845 0.061403509 0.3397290287 0.0322890065
## 22   0.34898880 0.061403509 0.3422082643 0.0336795391
## 152  0.34711201 0.062280702 0.3376914474 0.0336795391
## 202  0.34524605 0.063157895 0.3332473532 0.0336795391
## 99   0.34339077 0.064035088 0.3288744911 0.0336795391
## 724  0.34596708 0.064035088 0.3313213388 0.0350877193
## 446  0.34853544 0.064035088 0.3337525800 0.0365135472
## 1500 0.35109596 0.064035088 0.3361683209 0.0379570227
## 232  0.35364871 0.064035088 0.3385686681 0.0394181460
## 1299 0.35619381 0.064035088 0.3409537286 0.0408969168
## 1199 0.35435550 0.064912281 0.3366236180 0.0408969168
## 1258 0.35252737 0.065789474 0.3323605711 0.0408969168
## 33   0.35506752 0.065789474 0.3347207304 0.0423933354
## 337  0.35325067 0.066666667 0.3305181824 0.0423933354
## 93   0.35144371 0.067543860 0.3263798458 0.0423933354
## 1003 0.34964651 0.068421053 0.3223044718 0.0423933354
## 1474 0.34785897 0.069298246 0.3182908413 0.0423933354
## 231  0.34608098 0.070175439 0.3143377644 0.0423933354
## 269  0.34431241 0.071052632 0.3104440789 0.0423933354
## 1191 0.34255317 0.071929825 0.3066086504 0.0423933354
## 658  0.34080315 0.072807018 0.3028303705 0.0423933354
## 222  0.34334461 0.072807018 0.3051294967 0.0439074016
## 1456 0.34160460 0.073684211 0.3014006090 0.0439074016
## 563  0.34413976 0.073684211 0.3036803635 0.0454391155
## 149  0.34240960 0.074561404 0.2999996796 0.0454391155
## 801  0.34068828 0.075438596 0.2963726556 0.0454391155
## 81   0.34321808 0.075438596 0.2986267287 0.0469884771
## 320  0.34150630 0.076315789 0.2950456140 0.0469884771
## 19   0.33980312 0.077192982 0.2915160483 0.0469884771
## 729  0.34232757 0.077192982 0.2937446568 0.0485554863
## 442  0.34484513 0.077192982 0.2959615104 0.0501401433
## 7    0.34735589 0.077192982 0.2981666615 0.0517424478
## 899  0.34566357 0.078070175 0.2946676948 0.0517424478
## 562  0.34816842 0.078070175 0.2968548881 0.0533624001
## 1    0.35066663 0.078070175 0.2990306613 0.0550000000
## 1370 0.35315827 0.078070175 0.3011950662 0.0566552476
## 31   0.35564341 0.078070175 0.3033481551 0.0583281428
## 76   0.35812212 0.078070175 0.3054899812 0.0600186858
## 1085 0.35644222 0.078947368 0.3020097824 0.0600186858
## 191  0.35477037 0.079824561 0.2985773198 0.0600186858
## 266  0.35724444 0.079824561 0.3006965944 0.0617268764
## 705  0.35558135 0.080701754 0.2973051666 0.0617268764
## 1521 0.35392610 0.081578947 0.2939597039 0.0617268764
## 872  0.35227862 0.082456140 0.2906594148 0.0617268764
## 1330 0.35063882 0.083333333 0.2874035243 0.0617268764
## 1377 0.34900662 0.084210526 0.2841912738 0.0617268764
## 824  0.34738194 0.085087719 0.2810219204 0.0617268764
## 1328 0.34576471 0.085964912 0.2778947368 0.0617268764
## 66   0.34823764 0.085964912 0.2799607585 0.0634527146
## 194  0.34662840 0.086842105 0.2768685552 0.0634527146
## 1134 0.34502642 0.087719298 0.2738170217 0.0634527146
## 969  0.34749451 0.087719298 0.2758605761 0.0651962006
## 181  0.34590030 0.088596491 0.2728425263 0.0651962006
## 1010 0.34431319 0.089473684 0.2698637198 0.0651962006
## 905  0.34273311 0.090350877 0.2669235092 0.0651962006
## 291  0.34115998 0.091228070 0.2640212602 0.0651962006
## 105  0.33959375 0.092105263 0.2611563513 0.0651962006
## 1390 0.33803433 0.092982456 0.2583281734 0.0651962006
## 1170 0.34049959 0.092982456 0.2603229723 0.0669573342
## 1173 0.34295904 0.092982456 0.2623092425 0.0687361154
## 1073 0.34140726 0.093859649 0.2595037147 0.0687361154
## 361  0.34386143 0.093859649 0.2614749333 0.0705325444
## 118  0.34630992 0.093859649 0.2634377920 0.0723466210
## 1181 0.34476570 0.094736842 0.2606546092 0.0723466210
## 1096 0.34720905 0.094736842 0.2626027805 0.0741783453
## 501  0.34567181 0.095614035 0.2598479240 0.0741783453
## 223  0.34414102 0.096491228 0.2571271930 0.0741783453
## 77   0.34261662 0.097368421 0.2544400517 0.0741783453
## 135  0.34505577 0.097368421 0.2563610004 0.0760277172
## 250  0.34748948 0.097368421 0.2582741414 0.0778947368
## 848  0.34991780 0.097368421 0.2601794885 0.0797794041
## 483  0.35234078 0.097368421 0.2620770566 0.0816817191
## 346  0.35082443 0.098245614 0.2593978774 0.0816817191
## 1348 0.34931425 0.099122807 0.2567510332 0.0816817191
## 94   0.34781020 0.100000000 0.2541360294 0.0816817191
## 1343 0.35022924 0.100000000 0.2560077285 0.0836016817
## 1011 0.34873166 0.100877193 0.2534179400 0.0836016817
## 423  0.34724007 0.101754386 0.2508589822 0.0836016817
## 360  0.34965475 0.101754386 0.2527111730 0.0855392920
## 859  0.34816948 0.102631579 0.2501764584 0.0855392920
## 108  0.35057946 0.102631579 0.2520154645 0.0874945500
## 1481 0.34910043 0.103508772 0.2495045569 0.0874945500
## 1174 0.35150576 0.103508772 0.2513305585 0.0894674556
## 309  0.35390611 0.103508772 0.2531496228 0.0914580089
## 703  0.35243364 0.104385965 0.2506562071 0.0914580089
## 127  0.35096686 0.105263158 0.2481916499 0.0914580089
## 1297 0.35336308 0.105263158 0.2499921695 0.0934662099
## 886  0.35190232 0.106140351 0.2475501774 0.0934662099
## 417  0.35044714 0.107017544 0.2451361667 0.0934662099
## 956  0.34899750 0.107894737 0.2427497315 0.0934662099
## 768  0.34755333 0.108771930 0.2403904727 0.0934662099
## 851  0.34994613 0.108771930 0.2421609693 0.0954920585
## 798  0.34850772 0.109649123 0.2398225796 0.0954920585
## 1013 0.34707468 0.110526316 0.2375105582 0.0954920585
## 381  0.34564696 0.111403509 0.2352245286 0.0954920585
## 764  0.34803595 0.111403509 0.2369711568 0.0975355549
## 620  0.34661379 0.112280702 0.2347048379 0.0975355549
## 1528 0.34519685 0.113157895 0.2324637506 0.0975355549
## 986  0.34378508 0.114035088 0.2302475395 0.0975355549
## 618  0.34237843 0.114912281 0.2280558554 0.0975355549
## 284  0.34097687 0.115789474 0.2258883550 0.0975355549
## 853  0.34336253 0.115789474 0.2275995971 0.0995966988
## 570  0.34574363 0.115789474 0.2293052632 0.1016754905
## 156  0.34434757 0.116666667 0.2271498107 0.1016754905
## 505  0.34295648 0.117543860 0.2250178316 0.1016754905
## 1238 0.34157031 0.118421053 0.2229090027 0.1016754905
## 693  0.34394761 0.118421053 0.2245917203 0.1037719298
## 120  0.34256654 0.119298246 0.2224998939 0.1037719298
## 628  0.34119030 0.120175439 0.2204305699 0.1037719298
## 522  0.33981885 0.121052632 0.2183834423 0.1037719298
## 1498 0.34219235 0.121052632 0.2200435416 0.1058860168
## 818  0.34082583 0.121929825 0.2180125117 0.1058860168
## 57   0.34319519 0.121929825 0.2196618106 0.1080177515
## 188  0.34183356 0.122807018 0.2176466331 0.1080177515
## 564  0.34419882 0.122807018 0.2192852694 0.1101671338
## 254  0.34655985 0.122807018 0.2209189695 0.1123341638
## 1379 0.34520324 0.123684211 0.2189138131 0.1123341638
## 849  0.34756028 0.123684211 0.2205370569 0.1145188415
## 281  0.34620846 0.124561404 0.2185473397 0.1145188415
## 288  0.34486118 0.125438596 0.2165783005 0.1145188415
## 229  0.34721448 0.125438596 0.2181857501 0.1167211668
## 190  0.34587188 0.126315789 0.2162316346 0.1167211668
## 929  0.34822130 0.126315789 0.2178289474 0.1189411398
## 364  0.35056668 0.126315789 0.2194215997 0.1211787605
## 651  0.34922892 0.127192982 0.2174768375 0.1211787605
## 1113 0.34789556 0.128070175 0.2155519155 0.1211787605
## 298  0.35023736 0.128070175 0.2171293288 0.1234340289
## 566  0.35257522 0.128070175 0.2187022111 0.1257069449
## 1266 0.35124661 0.128947368 0.2167863319 0.1257069449
## 457  0.34992231 0.129824561 0.2148897621 0.1257069449
## 258  0.34860227 0.130701754 0.2130122558 0.1257069449
## 1056 0.35093684 0.130701754 0.2145650617 0.1279975086
## 123  0.34962123 0.131578947 0.2127011744 0.1279975086
## 199  0.34830980 0.132456140 0.2108558606 0.1279975086
## 765  0.34700253 0.133333333 0.2090288866 0.1279975086
## 1060 0.34569939 0.134210526 0.2072200223 0.1279975086
## 775  0.34440034 0.135087719 0.2054290411 0.1279975086
## 1376 0.34310535 0.135964912 0.2036557198 0.1279975086
## 833  0.34181439 0.136842105 0.2018998389 0.1279975086
## 485  0.34414629 0.136842105 0.2034121617 0.1303057199
## 1416 0.34647447 0.136842105 0.2049205855 0.1326315789
## 856  0.34518778 0.137719298 0.2031716067 0.1326315789
## 805  0.34751244 0.137719298 0.2046710526 0.1349750856
## 1499 0.34983345 0.137719298 0.2061666408 0.1373362400
## 1516 0.34855100 0.138596491 0.2044245733 0.1373362400
## 365  0.35086858 0.138596491 0.2059113393 0.1397150420
## 416  0.34959019 0.139473684 0.2041810918 0.1397150420
## 1493 0.35190437 0.139473684 0.2056591384 0.1421114917
## 617  0.35063000 0.140350877 0.2039405540 0.1421114917
## 727  0.35294083 0.140350877 0.2054099820 0.1445255891
## 111  0.35167044 0.141228070 0.2037029069 0.1445255891
## 1171 0.35397797 0.141228070 0.2051638155 0.1469573342
## 1251 0.35628206 0.141228070 0.2066210526 0.1494067269
## 1042 0.35501580 0.142105263 0.2049205855 0.1494067269
## 217  0.35731667 0.142105263 0.2063694473 0.1518737673
## 640  0.35961417 0.142105263 0.2078146759 0.1543584553
## 106  0.35835202 0.142982456 0.2061208213 0.1543584553
## 1368 0.35709356 0.143859649 0.2044427275 0.1543584553
## 109  0.35583878 0.144736842 0.2027802095 0.1543584553
## 370  0.35813351 0.144736842 0.2042079990 0.1568607910
## 875  0.35688254 0.145614035 0.2025562643 0.1568607910
## 164  0.35917419 0.145614035 0.2039760056 0.1593807744
## 1477 0.35792701 0.146491228 0.2023349172 0.1593807744
## 227  0.35668340 0.147368421 0.2007088570 0.1593807744
## 1133 0.35544334 0.148245614 0.1990976514 0.1593807744
## 524  0.35420681 0.149122807 0.1975011294 0.1593807744
## 659  0.35297377 0.150000000 0.1959191221 0.1593807744
## 542  0.35174421 0.150877193 0.1943514632 0.1593807744
## 160  0.35051810 0.151754386 0.1927979887 0.1593807744
## 694  0.35280765 0.151754386 0.1941826219 0.1619184055
## 968  0.35509406 0.151754386 0.1955641463 0.1644736842
## 96   0.35737737 0.151754386 0.1969425514 0.1670466106
## 747  0.35615511 0.152631579 0.1953896428 0.1670466106
## 1055 0.35843550 0.152631579 0.1967605277 0.1696371847
## 1048 0.36071285 0.152631579 0.1981283203 0.1722454064
## 208  0.35949430 0.153508772 0.1965805305 0.1722454064
## 158  0.36176881 0.153508772 0.1979409206 0.1748712758
## 811  0.36404034 0.153508772 0.1992982456 0.1775147929
## 301  0.36630892 0.153508772 0.2006524967 0.1801759576
## 1401 0.36509424 0.154385965 0.1991056309 0.1801759576
## 113  0.36388285 0.155263158 0.1975723038 0.1801759576
## 1494 0.36614889 0.155263158 0.1989151316 0.1828547701
## 402  0.36494097 0.156140351 0.1973910191 0.1828547701
## 686  0.36720432 0.156140351 0.1987267132 0.1855512301
## 1101 0.36599982 0.157017544 0.1972117065 0.1855512301
## 884  0.36826053 0.157017544 0.1985403419 0.1882653379
## 560  0.37051842 0.157017544 0.1998660439 0.1909970933
## 265  0.37277353 0.157017544 0.2011888044 0.1937464964
## 371  0.37502587 0.157017544 0.2025086156 0.1965135472
## 180  0.37382540 0.157894737 0.2009905781 0.1965135472
## 56   0.37262810 0.158771930 0.1994854800 0.1965135472
## 783  0.37143395 0.159649123 0.1979931821 0.1965135472
## 1161 0.37024291 0.160526316 0.1965135472 0.1965135472
## 809  0.37249339 0.160526316 0.1978146746 0.1992982456
## 759  0.37130566 0.161403509 0.1963436288 0.1992982456
## 1242 0.37012101 0.162280702 0.1948849748 0.1992982456
## 211  0.37236922 0.162280702 0.1961755005 0.2021005917
## 758  0.37118782 0.163157895 0.1947252043 0.2021005917
## 624  0.37000945 0.164035088 0.1932870370 0.2021005917
## 368  0.37225543 0.164035088 0.1945671016 0.2049205855
## 504  0.37108026 0.164912281 0.1931370686 0.2049205855
## 133  0.36990808 0.165789474 0.1917189095 0.2049205855
## 622  0.36873886 0.166666667 0.1903125000 0.2049205855
## 927  0.37098284 0.166666667 0.1915784106 0.2077582269
## 1423 0.37322427 0.166666667 0.1928417613 0.2106135160
## 459  0.37205838 0.167543860 0.1914393518 0.2106135160
## 753  0.37089539 0.168421053 0.1900484473 0.2106135160
## 506  0.36973530 0.169298246 0.1886689288 0.2106135160
## 810  0.37197481 0.169298246 0.1899184325 0.2134864528
## 1451 0.37081778 0.170175439 0.1885464223 0.2134864528
## 197  0.37305501 0.170175439 0.1897897317 0.2163770373
## 90   0.37190102 0.171052632 0.1884251491 0.2163770373
## 894  0.37074986 0.171929825 0.1870716052 0.2163770373
## 1362 0.36960150 0.172807018 0.1857289876 0.2163770373
## 681  0.36845594 0.173684211 0.1843971851 0.2163770373
## 363  0.37069149 0.173684211 0.1856232900 0.2192852694
## 1337 0.37292466 0.173684211 0.1868470799 0.2222111492
## 993  0.37178223 0.174561404 0.1855186376 0.2222111492
## 234  0.37064255 0.175438596 0.1842007941 0.2222111492
## 803  0.37287373 0.175438596 0.1854150152 0.2251546766
## 115  0.37173696 0.176315789 0.1841040426 0.2251546766
## 256  0.37396601 0.176315789 0.1853124075 0.2281158518
## 1015 0.37283213 0.177192982 0.1840082349 0.2281158518
## 1271 0.37170093 0.178070175 0.1827143476 0.2281158518
## 72   0.37057240 0.178947368 0.1814306436 0.2281158518
## 45   0.37279973 0.178947368 0.1826260990 0.2310946746
## 1418 0.37502481 0.178947368 0.1838193963 0.2340911450
## 1412 0.37724765 0.178947368 0.1850105263 0.2371052632
## 521  0.37612234 0.179824561 0.1837263388 0.2371052632
## 515  0.37499965 0.180701754 0.1824521376 0.2371052632
## 319  0.37387955 0.181578947 0.1811878250 0.2371052632
## 670  0.37276204 0.182456140 0.1799333043 0.2371052632
## 1052 0.37498348 0.182456140 0.1811084228 0.2401370290
## 766  0.37386873 0.183333333 0.1798601429 0.2401370290
## 1334 0.37608820 0.183333333 0.1810297711 0.2431864424
## 1265 0.37497619 0.184210526 0.1797876704 0.2431864424
## 404  0.37386671 0.185087719 0.1785550821 0.2431864424
## 685  0.37608445 0.185087719 0.1797158771 0.2462535036
## 674  0.37497767 0.185964912 0.1784893173 0.2462535036
## 233  0.37719351 0.185964912 0.1796447536 0.2493382124
## 1130 0.37608942 0.186842105 0.1784241637 0.2493382124
## 75   0.37830340 0.186842105 0.1795742905 0.2524405689
## 70   0.37720199 0.187719298 0.1783596129 0.2524405689
## 514  0.37610302 0.188596491 0.1771540935 0.2524405689
## 338  0.37500649 0.189473684 0.1759576456 0.2524405689
## 322  0.37391238 0.190350877 0.1747701832 0.2524405689
## 1099 0.37612513 0.190350877 0.1759051459 0.2555605730
## 38   0.37503362 0.191228070 0.1747232872 0.2555605730
## 405  0.37394450 0.192105263 0.1735502476 0.2555605730
## 426  0.37285775 0.192982456 0.1723859444 0.2555605730
## 916  0.37177336 0.193859649 0.1712302957 0.2555605730
## 393  0.37069131 0.194736842 0.1700832207 0.2555605730
## 1397 0.36961158 0.195614035 0.1689446394 0.2555605730
## 1247 0.36853418 0.196491228 0.1678144728 0.2555605730
## 611  0.37074628 0.196491228 0.1689247396 0.2586982249
## 642  0.37295646 0.196491228 0.1700333242 0.2618535243
## 985  0.37188172 0.197368421 0.1689050162 0.2618535243
## 369  0.37409019 0.197368421 0.1700087073 0.2650264715
## 845  0.37629677 0.197368421 0.1711107213 0.2682170663
## 203  0.37522469 0.198245614 0.1699843075 0.2682170663
## 1483 0.37415488 0.199122807 0.1688660891 0.2682170663
## 1490 0.37308731 0.200000000 0.1677559913 0.2682170663
## 780  0.37202197 0.200877193 0.1666539399 0.2682170663
## 995  0.37095885 0.201754386 0.1655598617 0.2682170663
## 228  0.36989793 0.202631579 0.1644736842 0.2682170663
## 125  0.37210383 0.202631579 0.1655551630 0.2714253088
## 1459 0.37104529 0.203508772 0.1644736842 0.2714253088
## 375  0.36998893 0.204385965 0.1633999671 0.2714253088
## 1336 0.37219341 0.204385965 0.1644736842 0.2746511990
## 518  0.37439613 0.204385965 0.1655458865 0.2778947368
## 1121 0.37334231 0.205263158 0.1644736842 0.2778947368
## 132  0.37229063 0.206140351 0.1634091115 0.2778947368
## 16   0.37449199 0.206140351 0.1644736842 0.2811559224
## 600  0.37669163 0.206140351 0.1655367678 0.2844347555
## 46   0.37564248 0.207017544 0.1644736842 0.2844347555
## 1223 0.37459545 0.207894737 0.1634181015 0.2844347555
## 561  0.37679380 0.207894737 0.1644736842 0.2877312364
## 815  0.37899048 0.207894737 0.1655278029 0.2910453649
## 869  0.37794596 0.208771930 0.1644736842 0.2910453649
## 604  0.38014120 0.208771930 0.1655233769 0.2943771411
## 578  0.37909898 0.209649123 0.1644736842 0.2943771411
## 973  0.38129281 0.209649123 0.1655189879 0.2977265649
## 1077 0.38025288 0.210526316 0.1644736842 0.2977265649
## 559  0.38244532 0.210526316 0.1655146355 0.3010936365
## 781  0.38140766 0.211403509 0.1644736842 0.3010936365
## 1045 0.38037204 0.212280702 0.1634399258 0.3010936365
## 1382 0.37933845 0.213157895 0.1624132977 0.3010936365
## 508  0.37830687 0.214035088 0.1613937384 0.3010936365
## 866  0.37727728 0.214912281 0.1603811865 0.3010936365
## 1186 0.37624969 0.215789474 0.1593755818 0.3010936365
## 1372 0.37844190 0.215789474 0.1603978663 0.3044783557
## 224  0.37741650 0.216666667 0.1593962889 0.3044783557
## 541  0.37639307 0.217543860 0.1584015432 0.3044783557
## 748  0.37537158 0.218421053 0.1574135708 0.3044783557
## 1366 0.37435204 0.219298246 0.1564323137 0.3044783557
## 1017 0.37333442 0.220175439 0.1554577147 0.3044783557
## 746  0.37231873 0.221052632 0.1544897172 0.3044783557
## 391  0.37130494 0.221929825 0.1535282651 0.3044783557
## 424  0.37029304 0.222807018 0.1525733029 0.3044783557
## 1461 0.36928303 0.223684211 0.1516247757 0.3044783557
## 79   0.37147565 0.223684211 0.1526203100 0.3078807225
## 528  0.37046771 0.224561404 0.1516753579 0.3078807225
## 1268 0.36946164 0.225438596 0.1507367368 0.3078807225
## 304  0.37165322 0.225438596 0.1517255436 0.3113007370
## 1375 0.37064920 0.226315789 0.1507904219 0.3113007370
## 576  0.36964702 0.227192982 0.1498615298 0.3113007370
## 1384 0.36864667 0.228070175 0.1489388153 0.3113007370
## 1522 0.36764813 0.228947368 0.1480222269 0.3113007370
## 596  0.36665140 0.229824561 0.1471117137 0.3113007370
## 1075 0.36565646 0.230701754 0.1462072253 0.3113007370
## 1004 0.36466331 0.231578947 0.1453087117 0.3113007370
## 179  0.36367193 0.232456140 0.1444161235 0.3113007370
## 1443 0.36268231 0.233333333 0.1435294118 0.3113007370
## 252  0.36169445 0.234210526 0.1426485281 0.3113007370
## 842  0.36070834 0.235087719 0.1417734247 0.3113007370
## 276  0.35972395 0.235964912 0.1409040538 0.3113007370
## 163  0.35874129 0.236842105 0.1400403688 0.3113007370
## 308  0.35776034 0.237719298 0.1391823229 0.3113007370
## 307  0.35995332 0.237719298 0.1401317569 0.3147383993
## 1508 0.35897426 0.238596491 0.1392766080 0.3147383993
## 603  0.36116611 0.238596491 0.1402224647 0.3181937091
## 569  0.36335667 0.238596491 0.1411674296 0.3216666667
## 1137 0.36237970 0.239473684 0.1403125000 0.3216666667
## 730  0.36456918 0.239473684 0.1412539199 0.3251572719
## 1221 0.36359410 0.240350877 0.1404018700 0.3251572719
## 453  0.36262068 0.241228070 0.1395552978 0.3251572719
## 325  0.36164892 0.242105263 0.1387141591 0.3251572719
## 246  0.36067881 0.242982456 0.1378784103 0.3251572719
## 517  0.35971035 0.243859649 0.1370480083 0.3251572719
## 749  0.35874351 0.244736842 0.1362229102 0.3251572719
## 259  0.36093298 0.244736842 0.1371477748 0.3286655248
## 777  0.35996796 0.245614035 0.1363253457 0.3286655248
## 100  0.36215644 0.245614035 0.1372468194 0.3321914253
## 408  0.36119324 0.246491228 0.1364270423 0.3321914253
## 61   0.36338074 0.246491228 0.1373451498 0.3357349735
## 971  0.36556708 0.246491228 0.1382624533 0.3392961694
## 171  0.36460591 0.247368421 0.1374427737 0.3392961694
## 599  0.36364634 0.248245614 0.1366282507 0.3392961694
## 793  0.36268835 0.249122807 0.1358188437 0.3392961694
## 1239 0.36173192 0.250000000 0.1350145127 0.3392961694
## 1094 0.36391800 0.250000000 0.1359209381 0.3428750130
## 2    0.36296336 0.250877193 0.1351191390 0.3428750130
## 1095 0.36514856 0.250877193 0.1360223089 0.3464715042
## 39   0.36419570 0.251754386 0.1352230262 0.3464715042
## 1359 0.36324437 0.252631579 0.1344287108 0.3464715042
## 129  0.36542894 0.252631579 0.1353261821 0.3500856431
## 142  0.36447938 0.253508772 0.1345343339 0.3500856431
## 401  0.36353135 0.254385965 0.1337473808 0.3500856431
## 717  0.36258483 0.255263158 0.1329652851 0.3500856431
## 492  0.36163981 0.256140351 0.1321880094 0.3500856431
## 1031 0.36069630 0.257017544 0.1314155165 0.3500856431
## 382  0.35975427 0.257894737 0.1306477697 0.3500856431
## 1302 0.36193917 0.257894737 0.1315298826 0.3537174297
## 431  0.36099885 0.258771930 0.1307644261 0.3537174297
## 723  0.36318298 0.258771930 0.1316434621 0.3573668639
## 444  0.36536611 0.258771930 0.1325218304 0.3610339458
## 1235 0.36442774 0.259649123 0.1317562632 0.3610339458
## 520  0.36661013 0.259649123 0.1326315789 0.3647186754
## 1341 0.36879157 0.259649123 0.1335062204 0.3684210526
## 551  0.36785516 0.260526316 0.1327405780 0.3684210526
## 452  0.36692020 0.261403509 0.1319795616 0.3684210526
## 314  0.36598668 0.262280702 0.1312231363 0.3684210526
## 933  0.36816794 0.262280702 0.1320900745 0.3721410775
## 885  0.37034829 0.262280702 0.1329563578 0.3758787501
## 116  0.36941673 0.263157895 0.1321998402 0.3758787501
## 212  0.37159644 0.263157895 0.1330631536 0.3796340704
## 1391 0.37066657 0.264035088 0.1323088660 0.3796340704
## 704  0.36973811 0.264912281 0.1315590802 0.3796340704
## 493  0.36881106 0.265789474 0.1308137625 0.3796340704
## 1029 0.36788542 0.266666667 0.1300728796 0.3796340704
## 1237 0.36696116 0.267543860 0.1293363988 0.3796340704
## 348  0.36603830 0.268421053 0.1286042872 0.3796340704
## 1187 0.36511681 0.269298246 0.1278765126 0.3796340704
## 1091 0.36729753 0.269298246 0.1287232361 0.3834070383
## 18   0.36947742 0.269298246 0.1295693748 0.3871976539
## 1275 0.36855784 0.270175439 0.1288414012 0.3871976539
## 154  0.36763962 0.271052632 0.1281177097 0.3871976539
## 345  0.36672275 0.271929825 0.1273982688 0.3871976539
## 1037 0.36580723 0.272807018 0.1266830474 0.3871976539
## 1326 0.36489305 0.273684211 0.1259720146 0.3871976539
## 215  0.36707352 0.273684211 0.1268064319 0.3910059172
## 1135 0.36616094 0.274561404 0.1260973449 0.3910059172
## 769  0.36524969 0.275438596 0.1253923900 0.3910059172
## 841  0.36433975 0.276315789 0.1246915372 0.3910059172
## 119  0.36652029 0.276315789 0.1255188202 0.3948318281
## 1084 0.36561194 0.277192982 0.1248198522 0.3948318281
## 1515 0.36470489 0.278070175 0.1241249315 0.3948318281
## 221  0.36688525 0.278070175 0.1249473454 0.3986753867
## 1212 0.36906490 0.278070175 0.1257692515 0.4025365930
## 40   0.36815972 0.278947368 0.1250740246 0.4025365930
## 421  0.36725583 0.279824561 0.1243827955 0.4025365930
## 101  0.36635321 0.280701754 0.1236955357 0.4025365930
## 71   0.36545186 0.281578947 0.1230122167 0.4025365930
## 832  0.36455178 0.282456140 0.1223328103 0.4025365930
## 1078 0.36365295 0.283333333 0.1216572886 0.4025365930
## 295  0.36583366 0.283333333 0.1224658680 0.4064154469
## 1288 0.36493638 0.284210526 0.1217920835 0.4064154469
## 249  0.36404034 0.285087719 0.1211221331 0.4064154469
## 330  0.36314554 0.285964912 0.1204559894 0.4064154469
## 1155 0.36225196 0.286842105 0.1197936256 0.4064154469
## 359  0.36443321 0.286842105 0.1205933320 0.4103119485
## 263  0.36354115 0.287719298 0.1199326294 0.4103119485
## 1138 0.36265031 0.288596491 0.1192756579 0.4103119485
## 1146 0.36176068 0.289473684 0.1186223912 0.4103119485
## 445  0.36394222 0.289473684 0.1194154358 0.4142260978
## 874  0.36305409 0.290350877 0.1187637791 0.4142260978
## 69   0.36523534 0.290350877 0.1195543565 0.4181578947
## 1176 0.36741603 0.290350877 0.1203445264 0.4221073394
## 456  0.36652971 0.291228070 0.1196924278 0.4221073394
## 1194 0.36564458 0.292105263 0.1190439697 0.4221073394
## 829  0.36476064 0.292982456 0.1183991266 0.4221073394
## 287  0.36387786 0.293859649 0.1177578735 0.4221073394
## 785  0.36299626 0.294736842 0.1171201856 0.4221073394
## 867  0.36211582 0.295614035 0.1164860380 0.4221073394
## 1049 0.36429785 0.295614035 0.1172636452 0.4260744316
## 253  0.36341888 0.296491228 0.1166310041 0.4260744316
## 1107 0.36254106 0.297368421 0.1160018590 0.4260744316
## 919  0.36166438 0.298245614 0.1153761859 0.4260744316
## 1129 0.36384687 0.298245614 0.1161474377 0.4300591716
## 237  0.36297165 0.299122807 0.1155232251 0.4300591716
## 122  0.36209755 0.300000000 0.1149024413 0.4300591716
## 1347 0.36122458 0.300877193 0.1142850628 0.4300591716
## 342  0.36035273 0.301754386 0.1136710663 0.4300591716
## 198  0.35948198 0.302631579 0.1130604288 0.4300591716
## 270  0.35861234 0.303508772 0.1124531275 0.4300591716
## 739  0.35774380 0.304385965 0.1118491397 0.4300591716
## 390  0.35687635 0.305263158 0.1112484429 0.4300591716
## 1136 0.35600998 0.306140351 0.1106510147 0.4300591716
## 296  0.35819495 0.306140351 0.1114042654 0.4340615592
## 1402 0.35732999 0.307017544 0.1108081437 0.4340615592
## 264  0.35646611 0.307894737 0.1102152511 0.4340615592
## 902  0.35560329 0.308771930 0.1096255657 0.4340615592
## 63   0.35474154 0.309649123 0.1090390659 0.4340615592
## 1074 0.35388084 0.310526316 0.1084557305 0.4340615592
## 1478 0.35302119 0.311403509 0.1078755381 0.4340615592
## 1425 0.35216259 0.312280702 0.1072984679 0.4340615592
## 1259 0.35130502 0.313157895 0.1067244988 0.4340615592
## 1352 0.35044849 0.314035088 0.1061536102 0.4340615592
## 326  0.34959298 0.314912281 0.1055857816 0.4340615592
## 13   0.35178086 0.314912281 0.1063196314 0.4380815945
## 498  0.35092671 0.315789474 0.1057529536 0.4380815945
## 1464 0.35007357 0.316666667 0.1051892996 0.4380815945
## 893  0.34922144 0.317543860 0.1046286493 0.4380815945
## 1470 0.34837032 0.318421053 0.1040709828 0.4380815945
## 621  0.34752019 0.319298246 0.1035162804 0.4380815945
## 708  0.34667106 0.320175439 0.1029645227 0.4380815945
## 891  0.34582291 0.321052632 0.1024156902 0.4380815945
## 1256 0.34497575 0.321929825 0.1018697636 0.4380815945
## 980  0.34412955 0.322807018 0.1013267240 0.4380815945
## 299  0.34632014 0.322807018 0.1020435978 0.4421192775
## 1439 0.34547526 0.323684211 0.1015015838 0.4421192775
## 400  0.34463135 0.324561404 0.1009624234 0.4421192775
## 138  0.34378839 0.325438596 0.1004260978 0.4421192775
## 855  0.34597973 0.325438596 0.1011373387 0.4461746081
## 963  0.34513808 0.326315789 0.1006020075 0.4461746081
## 888  0.34429737 0.327192982 0.1000694786 0.4461746081
## 930  0.34648916 0.327192982 0.1007769666 0.4502475864
## 612  0.34868072 0.327192982 0.1014843326 0.4543382124
## 751  0.34784167 0.328070175 0.1009509827 0.4543382124
## 139  0.34700356 0.328947368 0.1004204074 0.4543382124
## 209  0.34616637 0.329824561 0.0998925886 0.4543382124
## 1430 0.34533012 0.330701754 0.0993675087 0.4543382124
## 1296 0.34752292 0.330701754 0.1000676019 0.4584464860
## 742  0.34668796 0.331578947 0.0995434680 0.4584464860
## 277  0.34585391 0.332456140 0.0990220420 0.4584464860
## 1254 0.34502077 0.333333333 0.0985033066 0.4584464860
## 889  0.34418854 0.334210526 0.0979872446 0.4584464860
## 771  0.34335721 0.335087719 0.0974738389 0.4584464860
## 609  0.34555169 0.335087719 0.0981650214 0.4625724073
## 1222 0.34472163 0.335964912 0.0976525073 0.4625724073
## 830  0.34389246 0.336842105 0.0971426199 0.4625724073
## 449  0.34608755 0.336842105 0.0978302399 0.4667159763
## 440  0.34828253 0.336842105 0.0985177803 0.4708771930
## 395  0.34745501 0.337719298 0.0980070439 0.4708771930
## 1169 0.34965026 0.337719298 0.0986927769 0.4750560573
## 407  0.34882402 0.338596491 0.0981829265 0.4750560573
## 1009 0.34799866 0.339473684 0.0976756653 0.4750560573
## 1526 0.34717416 0.340350877 0.0971709768 0.4750560573
## 1206 0.34635054 0.341228070 0.0966688450 0.4750560573
## 1033 0.34552777 0.342105263 0.0961692537 0.4750560573
## 373  0.34470586 0.342982456 0.0956721872 0.4750560573
## 643  0.34690342 0.342982456 0.0963476362 0.4792525693
## 913  0.34608276 0.343859649 0.0958513932 0.4792525693
## 239  0.34526296 0.344736842 0.0953576474 0.4792525693
## 1503 0.34746128 0.344736842 0.0960296835 0.4834667290
## 490  0.34664272 0.345614035 0.0955367481 0.4834667290
## 954  0.34582500 0.346491228 0.0950462828 0.4834667290
## 1306 0.34500811 0.347368421 0.0945582722 0.4834667290
## 1284 0.34419206 0.348245614 0.0940727011 0.4834667290
## 1112 0.34337682 0.349122807 0.0935895544 0.4834667290
## 854  0.34557719 0.349122807 0.0942532503 0.4876985363
## 1119 0.34476319 0.350000000 0.0937708675 0.4876985363
## 1027 0.34395001 0.350877193 0.0932908832 0.4876985363
## 1360 0.34313763 0.351754386 0.0928132825 0.4876985363
## 821  0.34232606 0.352631579 0.0923380509 0.4876985363
## 1279 0.34151529 0.353508772 0.0918651739 0.4876985363
## 667  0.34070531 0.354385965 0.0913946370 0.4876985363
## 822  0.33989613 0.355263158 0.0909264258 0.4876985363
## 581  0.33908773 0.356140351 0.0904605263 0.4876985363
## 1450 0.33828011 0.357017544 0.0899969243 0.4876985363
## 852  0.34048431 0.357017544 0.0906459695 0.4919479913
## 1383 0.33967789 0.357894737 0.0901830457 0.4919479913
## 881  0.33887225 0.358771930 0.0897223953 0.4919479913
## 1225 0.33806737 0.359649123 0.0892640045 0.4919479913
## 1040 0.33726326 0.360526316 0.0888078596 0.4919479913
## 1331 0.33946928 0.360526316 0.0894505425 0.4962150939
## 280  0.33866636 0.361403509 0.0889950454 0.4962150939
## 406  0.33786420 0.362280702 0.0885417709 0.4962150939
## 991  0.33706279 0.363157895 0.0880907056 0.4962150939
## 328  0.33626212 0.364035088 0.0876418363 0.4962150939
## 1253 0.33546219 0.364912281 0.0871951496 0.4962150939
## 300  0.33767054 0.364912281 0.0878300029 0.5004998443
## 1211 0.33987905 0.364912281 0.0884649036 0.5048022423
## 550  0.33908076 0.365789474 0.0880172712 0.5048022423
## 339  0.33828319 0.366666667 0.0875718028 0.5048022423
## 12   0.33748636 0.367543860 0.0871284855 0.5048022423
## 1038 0.33669025 0.368421053 0.0866873065 0.5048022423
## 714  0.33589486 0.369298246 0.0862482530 0.5048022423
## 1047 0.33810583 0.369298246 0.0868754815 0.5091222880
## 1250 0.34031702 0.369298246 0.0875027681 0.5134599813
## 1333 0.34252842 0.369298246 0.0881301049 0.5178153223
## 1026 0.34173515 0.370175439 0.0876885857 0.5178153223
## 1232 0.34094259 0.371052632 0.0872491776 0.5178153223
## 860  0.34015073 0.371929825 0.0868118683 0.5178153223
## 290  0.34236381 0.371929825 0.0874347108 0.5221883110
## 545  0.34157314 0.372807018 0.0869979826 0.5221883110
## 1356 0.34078318 0.373684211 0.0865633319 0.5221883110
## 344  0.33999391 0.374561404 0.0861307466 0.5221883110
## 178  0.34220872 0.374561404 0.0867491495 0.5265789474
## 204  0.34142063 0.375438596 0.0863171278 0.5265789474
## 907  0.34063323 0.376315789 0.0858871509 0.5265789474
## 1455 0.33984652 0.377192982 0.0854592068 0.5265789474
## 1005 0.34206311 0.377192982 0.0860732240 0.5309872314
## 192  0.34127757 0.378070175 0.0856458265 0.5309872314
## 903  0.34049271 0.378947368 0.0852204416 0.5309872314
## 1240 0.33970853 0.379824561 0.0847970577 0.5309872314
## 538  0.33892501 0.380701754 0.0843756631 0.5309872314
## 998  0.33814216 0.381578947 0.0839562463 0.5309872314
## 846  0.34036160 0.381578947 0.0845630157 0.5354131631
## 1190 0.33957992 0.382456140 0.0841441129 0.5354131631
## 696  0.33879889 0.383333333 0.0837271686 0.5354131631
## 1172 0.34101973 0.383333333 0.0843311281 0.5398567424
## 255  0.34023987 0.384210526 0.0839146899 0.5398567424
## 294  0.33946067 0.385087719 0.0835001911 0.5398567424
## 340  0.33868210 0.385964912 0.0830876204 0.5398567424
## 54   0.33790418 0.386842105 0.0826769668 0.5398567424
## 1092 0.34012751 0.386842105 0.0832752855 0.5443179695
## 526  0.33935075 0.387719298 0.0828651151 0.5443179695
## 1323 0.33857463 0.388596491 0.0824568433 0.5443179695
## 1355 0.33779913 0.389473684 0.0820504593 0.5443179695
## 124  0.34002448 0.389473684 0.0826446281 0.5487968442
## 386  0.33925015 0.390350877 0.0822387126 0.5487968442
## 313  0.33847644 0.391228070 0.0818346667 0.5487968442
## 1183 0.33770335 0.392105263 0.0814324797 0.5487968442
## 1316 0.33693088 0.392982456 0.0810321412 0.5487968442
## 951  0.33615902 0.393859649 0.0806336407 0.5487968442
## 83   0.33538776 0.394736842 0.0802369678 0.5487968442
## 1346 0.33461710 0.395614035 0.0798421122 0.5487968442
## 162  0.33684673 0.395614035 0.0804266232 0.5532933666
## 695  0.33607722 0.396491228 0.0800321934 0.5532933666
## 343  0.33530831 0.397368421 0.0796395638 0.5532933666
## 770  0.33453999 0.398245614 0.0792487241 0.5532933666
## 825  0.33377225 0.399122807 0.0788596643 0.5532933666
## 588  0.33300511 0.400000000 0.0784723745 0.5532933666
## 756  0.33223854 0.400877193 0.0780868448 0.5532933666
## 102  0.33147254 0.401754386 0.0777030652 0.5532933666
## 415  0.33070712 0.402631579 0.0773210262 0.5532933666
## 928  0.33294174 0.402631579 0.0778947368 0.5578075366
## 557  0.33217745 0.403508772 0.0775130773 0.5578075366
## 60   0.33141373 0.404385965 0.0771331420 0.5578075366
## 900  0.33065057 0.405263158 0.0767549214 0.5578075366
## 977  0.33288748 0.405263158 0.0773247510 0.5623393543
## 610  0.33512499 0.405263158 0.0778947368 0.5668888197
## 635  0.33436354 0.406140351 0.0775155500 0.5668888197
## 1520 0.33360265 0.407017544 0.0771380652 0.5668888197
## 864  0.33284231 0.407894737 0.0767622730 0.5668888197
## 826  0.33208252 0.408771930 0.0763881641 0.5668888197
## 1502 0.33432301 0.408771930 0.0769529985 0.5714559327
## 627  0.33356436 0.409649123 0.0765792463 0.5714559327
## 59   0.33280625 0.410526316 0.0762071620 0.5714559327
## 248  0.33204868 0.411403509 0.0758367364 0.5714559327
## 547  0.33129164 0.412280702 0.0754679605 0.5714559327
## 1273 0.33053513 0.413157895 0.0751008253 0.5714559327
## 195  0.32977915 0.414035088 0.0747353217 0.5714559327
## 595  0.32902369 0.414912281 0.0743714409 0.5714559327
## 334  0.32826875 0.415789474 0.0740091741 0.5714559327
## 43   0.32751433 0.416666667 0.0736485123 0.5714559327
## 1305 0.32676041 0.417543860 0.0732894470 0.5714559327
## 5    0.32600701 0.418421053 0.0729319694 0.5714559327
## 435  0.32525411 0.419298246 0.0725760708 0.5714559327
## 1145 0.32450170 0.420175439 0.0722217429 0.5714559327
## 25   0.32675075 0.420175439 0.0727698977 0.5760406934
## 1106 0.32599946 0.421052632 0.0724158578 0.5760406934
## 1518 0.32524867 0.421929825 0.0720633745 0.5760406934
## 235  0.32449837 0.422807018 0.0717124394 0.5760406934
## 837  0.32374855 0.423684211 0.0713630441 0.5760406934
## 1097 0.32600085 0.423684211 0.0719063348 0.5806431018
## 999  0.32525215 0.424561404 0.0715572127 0.5806431018
## 536  0.32450393 0.425438596 0.0712096169 0.5806431018
## 214  0.32375618 0.426315789 0.0708635392 0.5806431018
## 1151 0.32300891 0.427192982 0.0705189715 0.5806431018
## 728  0.32526455 0.427192982 0.0710574669 0.5852631579
## 568  0.32752101 0.427192982 0.0715961760 0.5899008616
## 707  0.32677550 0.428070175 0.0712506272 0.5899008616
## 1262 0.32603046 0.428947368 0.0709065782 0.5899008616
## 1514 0.32528588 0.429824561 0.0705640210 0.5899008616
## 565  0.32754515 0.429824561 0.0710992367 0.5945562130
## 613  0.32680170 0.430701754 0.0707569355 0.5945562130
## 30   0.32605871 0.431578947 0.0704161132 0.5945562130
## 141  0.32531617 0.432456140 0.0700767618 0.5945562130
## 1158 0.32457409 0.433333333 0.0697388736 0.5945562130
## 205  0.32383245 0.434210526 0.0694024409 0.5945562130
## 1066 0.32309126 0.435087719 0.0690674560 0.5945562130
## 1501 0.32535543 0.435087719 0.0695955788 0.5992292121
## 1016 0.32461536 0.435964912 0.0692608267 0.5992292121
## 1035 0.32387573 0.436842105 0.0689275100 0.5992292121
## 817  0.32313653 0.437719298 0.0685956212 0.5992292121
## 1241 0.32239777 0.438596491 0.0682651527 0.5992292121
## 219  0.32466560 0.438596491 0.0687886997 0.6039198588
## 584  0.32392795 0.439473684 0.0684584512 0.6039198588
## 760  0.32319074 0.440350877 0.0681296111 0.6039198588
## 997  0.32245395 0.441228070 0.0678021719 0.6039198588
## 835  0.32171758 0.442105263 0.0674761264 0.6039198588
## 1285 0.32098162 0.442982456 0.0671514672 0.6039198588
## 419  0.32024608 0.443859649 0.0668281872 0.6039198588
## 858  0.31951094 0.444736842 0.0665062792 0.6039198588
## 1200 0.31877621 0.445614035 0.0661857360 0.6039198588
## 644  0.31804189 0.446491228 0.0658665507 0.6039198588
## 385  0.31730796 0.447368421 0.0655487160 0.6039198588
## 379  0.31657443 0.448245614 0.0652322252 0.6039198588
## 1340 0.31885099 0.448245614 0.0657430668 0.6086281532
## 470  0.31811857 0.449122807 0.0654267533 0.6086281532
## 242  0.32039689 0.449122807 0.0659366954 0.6133540953
## 1185 0.31966559 0.450000000 0.0656205607 0.6133540953
## 1398 0.31893467 0.450877193 0.0653057544 0.6133540953
## 403  0.31820414 0.451754386 0.0649922697 0.6133540953
## 637  0.31747398 0.452631579 0.0646800999 0.6133540953
## 1105 0.31674421 0.453508772 0.0643692382 0.6133540953
## 23   0.31601481 0.454385965 0.0640596779 0.6133540953
## 1436 0.31528578 0.455263158 0.0637514123 0.6133540953
## 1504 0.31455712 0.456140351 0.0634444348 0.6133540953
## 272  0.31382882 0.457017544 0.0631387389 0.6133540953
## 1264 0.31310088 0.457894737 0.0628343179 0.6133540953
## 484  0.31538769 0.457894737 0.0633331247 0.6180976850
## 895  0.31466086 0.458771930 0.0630288480 0.6180976850
## 437  0.31393439 0.459649123 0.0627258360 0.6180976850
## 67   0.31320827 0.460526316 0.0624240822 0.6180976850
## 776  0.31248250 0.461403509 0.0621235804 0.6180976850
## 58   0.31477350 0.461403509 0.0626181923 0.6228589225
## 1167 0.31404884 0.462280702 0.0623178249 0.6228589225
## 1104 0.31332452 0.463157895 0.0620186993 0.6228589225
## 489  0.31561827 0.463157895 0.0625113771 0.6276378075
## 763  0.31791324 0.463157895 0.0630043344 0.6324343403
## 583  0.31719082 0.464035088 0.0627042405 0.6324343403
## 831  0.31646875 0.464912281 0.0624053811 0.6324343403
## 1400 0.31574702 0.465789474 0.0621077500 0.6324343403
## 970  0.31804560 0.465789474 0.0625976943 0.6372485207
## 110  0.31732500 0.466666667 0.0623001949 0.6372485207
## 1440 0.31660473 0.467543860 0.0620039141 0.6372485207
## 207  0.31588480 0.468421053 0.0617088457 0.6372485207
## 1248 0.31516518 0.469298246 0.0614149836 0.6372485207
## 358  0.31746827 0.469298246 0.0619008671 0.6420803488
## 870  0.31674980 0.470175439 0.0616071276 0.6420803488
## 1270 0.31603165 0.471052632 0.0613145850 0.6420803488
## 592  0.31531381 0.471929825 0.0610232333 0.6420803488
## 579  0.31459629 0.472807018 0.0607330666 0.6420803488
## 495  0.31387908 0.473684211 0.0604440789 0.6420803488
## 1034 0.31316218 0.474561404 0.0601562646 0.6420803488
## 794  0.31244559 0.475438596 0.0598696176 0.6420803488
## 648  0.31172929 0.476315789 0.0595841323 0.6420803488
## 692  0.31404033 0.476315789 0.0600617629 0.6469298246
## 1427 0.31332518 0.477192982 0.0597763781 0.6469298246
## 533  0.31261032 0.478070175 0.0594921459 0.6469298246
## 1386 0.31189575 0.478947368 0.0592090607 0.6469298246
## 1272 0.31118147 0.479824561 0.0589271169 0.6469298246
## 20   0.31046749 0.480701754 0.0586463087 0.6469298246
## 367  0.31278417 0.480701754 0.0591189918 0.6517969480
## 789  0.31207133 0.481578947 0.0588382728 0.6517969480
## 1122 0.31135876 0.482456140 0.0585586809 0.6517969480
## 1192 0.31064648 0.483333333 0.0582802105 0.6517969480
## 529  0.30993447 0.484210526 0.0580028561 0.6517969480
## 649  0.30922273 0.485087719 0.0577266122 0.6517969480
## 176  0.31154521 0.485087719 0.0581944256 0.6566817191
## 1205 0.31083463 0.485964912 0.0579182602 0.6566817191
## 1197 0.31012430 0.486842105 0.0576431969 0.6566817191
## 65   0.30941425 0.487719298 0.0573692304 0.6566817191
## 389  0.30870445 0.488596491 0.0570963554 0.6566817191
## 940  0.30799492 0.489473684 0.0568245664 0.6566817191
## 1415 0.31032335 0.489473684 0.0572875866 0.6615841379
## 1064 0.30961497 0.490350877 0.0570158659 0.6615841379
## 448  0.31194585 0.490350877 0.0574781863 0.6665042043
## 396  0.31123863 0.491228070 0.0572065355 0.6665042043
## 1063 0.31053167 0.492105263 0.0569359597 0.6665042043
## 6    0.30982495 0.492982456 0.0566664539 0.6665042043
## 1132 0.30911848 0.493859649 0.0563980128 0.6665042043
## 187  0.30841225 0.494736842 0.0561306313 0.6665042043
## 1100 0.30770627 0.495614035 0.0558643044 0.6665042043
## 150  0.30700052 0.496491228 0.0555990269 0.6665042043
## 1117 0.30629500 0.497368421 0.0553347939 0.6665042043
## 558  0.30558971 0.498245614 0.0550716003 0.6665042043
## 1102 0.30488465 0.499122807 0.0548094412 0.6665042043
## 354  0.30417982 0.500000000 0.0545483116 0.6665042043
## 752  0.30347520 0.500877193 0.0542882066 0.6665042043
## 1162 0.30277080 0.501754386 0.0540291213 0.6665042043
## 399  0.30511538 0.501754386 0.0544788503 0.6714419184
## 1445 0.30441215 0.502631579 0.0542198035 0.6714419184
## 372  0.30370912 0.503508772 0.0539617690 0.6714419184
## 736  0.30300631 0.504385965 0.0537047420 0.6714419184
## 589  0.30230371 0.505263158 0.0534487176 0.6714419184
## 1378 0.30160131 0.506140351 0.0531936912 0.6714419184
## 750  0.30089910 0.507017544 0.0529396579 0.6714419184
## 1374 0.30019710 0.507894737 0.0526866131 0.6714419184
## 843  0.30255014 0.507894737 0.0531298979 0.6763972802
## 942  0.30184930 0.508771930 0.0528768781 0.6763972802
## 182  0.30420509 0.508771930 0.0533195437 0.6813702896
## 355  0.30350544 0.509649123 0.0530665507 0.6813702896
## 1358 0.30280598 0.510526316 0.0528145366 0.6813702896
## 540  0.30210671 0.511403509 0.0525634969 0.6813702896
## 1054 0.30446730 0.511403509 0.0530036449 0.6863609467
## 989  0.30376922 0.512280702 0.0527526288 0.6863609467
## 652  0.30307132 0.513157895 0.0525025800 0.6863609467
## 1364 0.30237361 0.514035088 0.0522534940 0.6863609467
## 1421 0.30473908 0.514035088 0.0526911501 0.6913692515
## 289  0.30404257 0.514912281 0.0524420846 0.6913692515
## 165  0.30334624 0.515789474 0.0521939751 0.6913692515
## 757  0.30265009 0.516666667 0.0519468172 0.6913692515
## 1115 0.30195410 0.517543860 0.0517006063 0.6913692515
## 1220 0.30432560 0.517543860 0.0521348660 0.6963952040
## 394  0.30363083 0.518421053 0.0518886703 0.6963952040
## 497  0.30293623 0.519298246 0.0516434150 0.6963952040
## 523  0.30224179 0.520175439 0.0513990958 0.6963952040
## 293  0.30154751 0.521052632 0.0511557083 0.6963952040
## 1291 0.30392517 0.521052632 0.0515866148 0.7014388041
## 1419 0.30630481 0.521052632 0.0520178603 0.7065000519
## 632  0.30561283 0.521929825 0.0517735673 0.7065000519
## 1351 0.30492102 0.522807018 0.0515302016 0.7065000519
## 527  0.30422936 0.523684211 0.0512877589 0.7065000519
## 575  0.30353786 0.524561404 0.0510462349 0.7065000519
## 1153 0.30284651 0.525438596 0.0508056255 0.7065000519
## 1437 0.30215531 0.526315789 0.0505659263 0.7065000519
## 934  0.30454350 0.526315789 0.0509920539 0.7115789474
## 678  0.30385354 0.527192982 0.0507523594 0.7115789474
## 1109 0.30316374 0.528070175 0.0505135689 0.7115789474
## 582  0.30247407 0.528947368 0.0502756783 0.7115789474
## 877  0.30178454 0.529824561 0.0500386835 0.7115789474
## 167  0.30417927 0.529824561 0.0504615633 0.7166754905
## 772  0.30349100 0.530701754 0.0502245685 0.7166754905
## 257  0.30280287 0.531578947 0.0499884632 0.7166754905
## 331  0.30211487 0.532456140 0.0497532435 0.7166754905
## 976  0.30451514 0.532456140 0.0501738004 0.7217896813
## 1428 0.30382842 0.533333333 0.0499385782 0.7217896813
## 461  0.30314182 0.534210526 0.0497042355 0.7217896813
## 1147 0.30245535 0.535087719 0.0494707683 0.7217896813
## 240  0.30176900 0.535964912 0.0492381727 0.7217896813
## 1046 0.30108277 0.536842105 0.0490064447 0.7217896813
## 103  0.30039666 0.537719298 0.0487755803 0.7217896813
## 185  0.29971065 0.538596491 0.0485455758 0.7217896813
## 1314 0.29902476 0.539473684 0.0483164272 0.7217896813
## 1286 0.29833897 0.540350877 0.0480881306 0.7217896813
## 950  0.29765329 0.541228070 0.0478606822 0.7217896813
## 828  0.29696770 0.542105263 0.0476340782 0.7217896813
## 1313 0.29628221 0.542982456 0.0474083147 0.7217896813
## 271  0.29559682 0.543859649 0.0471833882 0.7217896813
## 838  0.29491151 0.544736842 0.0469592946 0.7217896813
## 131  0.29422628 0.545614035 0.0467360304 0.7217896813
## 1480 0.29354115 0.546491228 0.0465135918 0.7217896813
## 733  0.29596250 0.546491228 0.0469206061 0.7269215198
## 1462 0.29527866 0.547368421 0.0466981381 0.7269215198
## 1070 0.29459489 0.548245614 0.0464764903 0.7269215198
## 462  0.29391120 0.549122807 0.0462556590 0.7269215198
## 1148 0.29322758 0.550000000 0.0460356405 0.7269215198
## 460  0.29254403 0.550877193 0.0458164313 0.7269215198
## 666  0.29186054 0.551754386 0.0455980276 0.7269215198
## 169  0.29117712 0.552631579 0.0453804261 0.7269215198
## 1182 0.29049376 0.553508772 0.0451636230 0.7269215198
## 979  0.28981046 0.554385965 0.0449476149 0.7269215198
## 1261 0.28912721 0.555263158 0.0447323982 0.7269215198
## 161  0.28844401 0.556140351 0.0445179695 0.7269215198
## 1267 0.28776085 0.557017544 0.0443043252 0.7269215198
## 1388 0.28707774 0.557894737 0.0440914618 0.7269215198
## 336  0.28639467 0.558771930 0.0438793760 0.7269215198
## 722  0.28883584 0.558771930 0.0442750258 0.7320710059
## 1028 0.28815408 0.559649123 0.0440628905 0.7320710059
## 8    0.28747235 0.560526316 0.0438515276 0.7320710059
## 1124 0.28679066 0.561403509 0.0436409340 0.7320710059
## 1062 0.28610900 0.562280702 0.0434311060 0.7320710059
## 876  0.28542736 0.563157895 0.0432220405 0.7320710059
## 738  0.28474575 0.564035088 0.0430137339 0.7320710059
## 1404 0.28406416 0.564912281 0.0428061831 0.7320710059
## 62   0.28338258 0.565789474 0.0425993847 0.7320710059
## 543  0.28270102 0.566666667 0.0423933354 0.7320710059
## 1139 0.28201947 0.567543860 0.0421880320 0.7320710059
## 816  0.28133792 0.568421053 0.0419834711 0.7320710059
## 743  0.28065637 0.569298246 0.0417796495 0.7320710059
## 1422 0.28311577 0.569298246 0.0421659299 0.7372381397
## 923  0.28243555 0.570175439 0.0419620441 0.7372381397
## 475  0.28175534 0.571052632 0.0417588929 0.7372381397
## 745  0.28107513 0.571929825 0.0415564732 0.7372381397
## 863  0.28039490 0.572807018 0.0413547818 0.7372381397
## 1339 0.28286239 0.572807018 0.0417382645 0.7424229212
## 1530 0.28218351 0.573684211 0.0415365062 0.7424229212
## 1036 0.28150463 0.574561404 0.0413354717 0.7424229212
## 327  0.28082574 0.575438596 0.0411351579 0.7424229212
## 682  0.28330011 0.575438596 0.0415166620 0.7476253504
## 14   0.28262258 0.576315789 0.0413162801 0.7476253504
## 411  0.28194505 0.577192982 0.0411166145 0.7476253504
## 1289 0.28126749 0.578070175 0.0409176619 0.7476253504
## 136  0.28058991 0.578947368 0.0407194194 0.7476253504
## 1018 0.27991230 0.579824561 0.0405218839 0.7476253504
## 480  0.28239651 0.579824561 0.0408998714 0.7528454272
## 795  0.28172030 0.580701754 0.0407022641 0.7528454272
## 1179 0.28420882 0.580701754 0.0410798665 0.7580831517
## 623  0.28353402 0.581578947 0.0408821891 0.7580831517
## 1510 0.28285919 0.582456140 0.0406852129 0.7580831517
## 834  0.28218433 0.583333333 0.0404889351 0.7580831517
## 155  0.28150943 0.584210526 0.0402933527 0.7580831517
## 321  0.28083450 0.585087719 0.0400984627 0.7580831517
## 434  0.28015952 0.585964912 0.0399042621 0.7580831517
## 318  0.27948449 0.586842105 0.0397107480 0.7580831517
## 283  0.27880942 0.587719298 0.0395179175 0.7580831517
## 813  0.28131262 0.587719298 0.0398897805 0.7633385238
## 88   0.28063898 0.588596491 0.0396968725 0.7633385238
## 792  0.27996530 0.589473684 0.0395046440 0.7633385238
## 50   0.27929155 0.590350877 0.0393130920 0.7633385238
## 1295 0.28180231 0.590350877 0.0396830800 0.7686115437
## 1208 0.28431617 0.590350877 0.0400534579 0.7739022111
## 479  0.28683315 0.590350877 0.0404242214 0.7792105263
## 1184 0.28616395 0.591228070 0.0402310905 0.7792105263
## 193  0.28549470 0.592105263 0.0400386354 0.7792105263
## 144  0.28801794 0.592105263 0.0404082845 0.7845364892
## 42   0.28735021 0.592982456 0.0402157569 0.7845364892
## 1392 0.28668243 0.593859649 0.0400239010 0.7845364892
## 665  0.28601459 0.594736842 0.0398327140 0.7845364892
## 184  0.28534670 0.595614035 0.0396421931 0.7845364892
## 698  0.28467875 0.596491228 0.0394523355 0.7845364892
## 1219 0.28721316 0.596491228 0.0398186586 0.7898800997
## 641  0.28975085 0.596491228 0.0401853621 0.7952413578
## 590  0.28908607 0.597368421 0.0399946937 0.7952413578
## 1438 0.28842123 0.598245614 0.0398046862 0.7952413578
## 278  0.28775633 0.599122807 0.0396153369 0.7952413578
## 952  0.28709137 0.600000000 0.0394266431 0.7952413578
## 128  0.28963896 0.600000000 0.0397907961 0.8006202637
## 597  0.28897559 0.600877193 0.0396020272 0.8006202637
## 186  0.28831216 0.601754386 0.0394139099 0.8006202637
## 1154 0.28764865 0.602631579 0.0392264414 0.8006202637
## 987  0.28698508 0.603508772 0.0390396190 0.8006202637
## 800  0.28632143 0.604385965 0.0388534402 0.8006202637
## 955  0.28565771 0.605263158 0.0386679021 0.8006202637
## 716  0.28499390 0.606140351 0.0384830022 0.8006202637
## 1257 0.28433000 0.607017544 0.0382987378 0.8006202637
## 1353 0.28366602 0.607894737 0.0381151063 0.8006202637
## 630  0.28300194 0.608771930 0.0379321050 0.8006202637
## 720  0.28233776 0.609649123 0.0377497315 0.8006202637
## 436  0.28167348 0.610526316 0.0375679830 0.8006202637
## 1466 0.28100910 0.611403509 0.0373868570 0.8006202637
## 1243 0.28034461 0.612280702 0.0372063510 0.8006202637
## 1142 0.27968001 0.613157895 0.0370264624 0.8006202637
## 380  0.27901530 0.614035088 0.0368471886 0.8006202637
## 697  0.27835046 0.614912281 0.0366685272 0.8006202637
## 1403 0.27768550 0.615789474 0.0364904756 0.8006202637
## 699  0.27702042 0.616666667 0.0363130313 0.8006202637
## 962  0.27635520 0.617543860 0.0361361919 0.8006202637
## 1350 0.27568985 0.618421053 0.0359599548 0.8006202637
## 1479 0.27502436 0.619298246 0.0357843177 0.8006202637
## 1387 0.27435873 0.620175439 0.0356092780 0.8006202637
## 1371 0.27694968 0.620175439 0.0359574839 0.8060168172
## 48   0.27628572 0.621052632 0.0357823476 0.8060168172
## 961  0.27562161 0.621929825 0.0356078055 0.8060168172
## 1357 0.27495736 0.622807018 0.0354338550 0.8060168172
## 1389 0.27429295 0.623684211 0.0352604937 0.8060168172
## 571  0.27689502 0.623684211 0.0356063412 0.8114310184
## 1168 0.27950096 0.623684211 0.0359525837 0.8168628672
## 95   0.27884012 0.624561404 0.0357784408 0.8168628672
## 709  0.27817913 0.625438596 0.0356048852 0.8168628672
## 1505 0.27751800 0.626315789 0.0354319147 0.8168628672
## 1467 0.27685671 0.627192982 0.0352595269 0.8168628672
## 1140 0.27619527 0.628070175 0.0350877193 0.8168628672
## 1157 0.27553367 0.628947368 0.0349164897 0.8168628672
## 1044 0.27487190 0.629824561 0.0347458358 0.8168628672
## 1320 0.27420996 0.630701754 0.0345757551 0.8168628672
## 1156 0.27354785 0.631578947 0.0344062455 0.8168628672
## 946  0.27288556 0.632456140 0.0342373045 0.8168628672
## 1069 0.27222309 0.633333333 0.0340689300 0.8168628672
## 1023 0.27156044 0.634210526 0.0339011197 0.8168628672
## 1143 0.27089760 0.635087719 0.0337338712 0.8168628672
## 286  0.27023457 0.635964912 0.0335671824 0.8168628672
## 680  0.26957134 0.636842105 0.0334010509 0.8168628672
## 711  0.26890791 0.637719298 0.0332354746 0.8168628672
## 924  0.27154874 0.637719298 0.0335713544 0.8223123637
## 606  0.27419377 0.637719298 0.0339076351 0.8277795079
## 1108 0.27353414 0.638596491 0.0337412926 0.8277795079
## 664  0.27287433 0.639473684 0.0335755035 0.8277795079
## 656  0.27221432 0.640350877 0.0334102658 0.8277795079
## 862  0.27155410 0.641228070 0.0332455773 0.8277795079
## 1349 0.27089368 0.642105263 0.0330814356 0.8277795079
## 953  0.27023305 0.642982456 0.0329178388 0.8277795079
## 744  0.26957220 0.643859649 0.0327547845 0.8277795079
## 546  0.26891114 0.644736842 0.0325922707 0.8277795079
## 1180 0.27157688 0.644736842 0.0329237206 0.8332642998
## 671  0.27091769 0.645614035 0.0327610978 0.8332642998
## 1304 0.27025828 0.646491228 0.0325990126 0.8332642998
## 984  0.26959864 0.647368421 0.0324374628 0.8332642998
## 464  0.26893878 0.648245614 0.0322764463 0.8332642998
## 1189 0.26827869 0.649122807 0.0321159610 0.8332642998
## 388  0.26761836 0.650000000 0.0319560048 0.8332642998
## 586  0.26695779 0.650877193 0.0317965756 0.8332642998
## 990  0.26629698 0.651754386 0.0316376713 0.8332642998
## 1236 0.26563592 0.652631579 0.0314792899 0.8332642998
## 349  0.26497461 0.653508772 0.0313214294 0.8332642998
## 1002 0.26431304 0.654385965 0.0311640876 0.8332642998
## 117  0.26700689 0.654385965 0.0314889004 0.8387667393
## 607  0.26970541 0.654385965 0.0318141177 0.8442868265
## 98   0.26904800 0.655263158 0.0316560301 0.8442868265
## 1369 0.26839035 0.656140351 0.0314984599 0.8442868265
## 333  0.26773244 0.657017544 0.0313414050 0.8442868265
## 311  0.26707428 0.657894737 0.0311848634 0.8442868265
## 1021 0.26641585 0.658771930 0.0310288332 0.8442868265
## 948  0.26575716 0.659649123 0.0308733123 0.8442868265
## 1166 0.26509820 0.660526316 0.0307182987 0.8442868265
## 668  0.26443896 0.661403509 0.0305637905 0.8442868265
## 587  0.26377945 0.662280702 0.0304097858 0.8442868265
## 1442 0.26311965 0.663157895 0.0302562824 0.8442868265
## 959  0.26245956 0.664035088 0.0301032786 0.8442868265
## 906  0.26179918 0.664912281 0.0299507723 0.8442868265
## 507  0.26113851 0.665789474 0.0297987616 0.8442868265
## 1059 0.26387159 0.665789474 0.0301162897 0.8498245614
## 639  0.26321297 0.666666667 0.0299641595 0.8498245614
## 996  0.26255406 0.667543860 0.0298125224 0.8498245614
## 1409 0.26189484 0.668421053 0.0296613765 0.8498245614
## 938  0.26123532 0.669298246 0.0295107198 0.8498245614
## 896  0.26057549 0.670175439 0.0293605505 0.8498245614
## 52   0.25991534 0.671052632 0.0292108668 0.8498245614
## 378  0.25925487 0.671929825 0.0290616666 0.8498245614
## 1079 0.25859408 0.672807018 0.0289129482 0.8498245614
## 982  0.25793296 0.673684211 0.0287647098 0.8498245614
## 988  0.25727150 0.674561404 0.0286169494 0.8498245614
## 700  0.25660971 0.675438596 0.0284696652 0.8498245614
## 383  0.25594758 0.676315789 0.0283228555 0.8498245614
## 840  0.25528509 0.677192982 0.0281765183 0.8498245614
## 130  0.25462225 0.678070175 0.0280306520 0.8498245614
## 1277 0.25395906 0.678947368 0.0278852545 0.8498245614
## 468  0.25329550 0.679824561 0.0277403243 0.8498245614
## 719  0.25263158 0.680701754 0.0275958595 0.8498245614
## 1114 0.25196728 0.681578947 0.0274518582 0.8498245614
## 790  0.25130261 0.682456140 0.0273083188 0.8498245614
## 68   0.25063755 0.683333333 0.0271652395 0.8498245614
## 1032 0.24997211 0.684210526 0.0270226185 0.8498245614
## 1260 0.24930627 0.685087719 0.0268804541 0.8498245614
## 1399 0.24864004 0.685964912 0.0267387446 0.8498245614
## 1244 0.24797340 0.686842105 0.0265974881 0.8498245614
## 910  0.24730636 0.687719298 0.0264566831 0.8498245614
## 882  0.24663890 0.688596491 0.0263163277 0.8498245614
## 356  0.24944212 0.688596491 0.0266187444 0.8553799439
## 458  0.24877689 0.689473684 0.0264782568 0.8553799439
## 1204 0.24811124 0.690350877 0.0263382166 0.8553799439
## 1207 0.24744518 0.691228070 0.0261986223 0.8553799439
## 220  0.25026215 0.691228070 0.0264997231 0.8609529742
## 814  0.25308495 0.691228070 0.0268012416 0.8665436520
## 466  0.25242389 0.692105263 0.0266609398 0.8665436520
## 892  0.25176244 0.692982456 0.0265210829 0.8665436520
## 616  0.25110057 0.693859649 0.0263816690 0.8665436520
## 947  0.25043828 0.694736842 0.0262426966 0.8665436520
## 1444 0.24977558 0.695614035 0.0261041641 0.8665436520
## 1110 0.24911244 0.696491228 0.0259660696 0.8665436520
## 530  0.24844888 0.697368421 0.0258284117 0.8665436520
## 645  0.24778488 0.698245614 0.0256911886 0.8665436520
## 646  0.24712043 0.699122807 0.0255543987 0.8665436520
## 465  0.24645554 0.700000000 0.0254180405 0.8665436520
## 912  0.24579019 0.700877193 0.0252821122 0.8665436520
## 329  0.24512438 0.701754386 0.0251466123 0.8665436520
## 548  0.24445811 0.702631579 0.0250115392 0.8665436520
## 625  0.24379137 0.703508772 0.0248768913 0.8665436520
## 683  0.24665975 0.703508772 0.0251708825 0.8721519776
## 675  0.24599546 0.704385965 0.0250360996 0.8721519776
## 577  0.24533070 0.705263158 0.0249017400 0.8721519776
## 1150 0.24466547 0.706140351 0.0247678019 0.8721519776
## 1263 0.24399975 0.707017544 0.0246342838 0.8721519776
## 398  0.24333356 0.707894737 0.0245011842 0.8721519776
## 519  0.24622319 0.707894737 0.0247928152 0.8777779508
## 554  0.24555952 0.708771930 0.0246595802 0.8777779508
## 1195 0.24489537 0.709649123 0.0245267617 0.8777779508
## 631  0.24423073 0.710526316 0.0243943581 0.8777779508
## 580  0.24356559 0.711403509 0.0242623679 0.8777779508
## 1022 0.24289995 0.712280702 0.0241307896 0.8777779508
## 4    0.24223380 0.713157895 0.0239996216 0.8777779508
## 1446 0.24156714 0.714035088 0.0238688625 0.8777779508
## 1354 0.24089996 0.714912281 0.0237385107 0.8777779508
## 1311 0.24023226 0.715789474 0.0236085648 0.8777779508
## 1394 0.23956402 0.716666667 0.0234790231 0.8777779508
## 914  0.23889525 0.717543860 0.0233498843 0.8777779508
## 312  0.23822593 0.718421053 0.0232211469 0.8777779508
## 1471 0.23755606 0.719298246 0.0230928093 0.8777779508
## 1307 0.23688564 0.720175439 0.0229648702 0.8777779508
## 430  0.23621465 0.721052632 0.0228373280 0.8777779508
## 332  0.23554310 0.721929825 0.0227101812 0.8777779508
## 718  0.23487097 0.722807018 0.0225834286 0.8777779508
## 598  0.23419826 0.723684211 0.0224570685 0.8777779508
## 104  0.23352497 0.724561404 0.0223310995 0.8777779508
## 206  0.23648159 0.724561404 0.0226128549 0.8834215717
## 511  0.23581102 0.725438596 0.0224867449 0.8834215717
## 1473 0.23513987 0.726315789 0.0223610243 0.8834215717
## 605  0.23811049 0.726315789 0.0226421437 0.8890828402
## 677  0.23744215 0.727192982 0.0225162829 0.8890828402
## 964  0.23677322 0.728070175 0.0223908097 0.8890828402
## 512  0.23610370 0.728947368 0.0222657227 0.8890828402
## 1489 0.23543358 0.729824561 0.0221410206 0.8890828402
## 879  0.23476287 0.730701754 0.0220167018 0.8890828402
## 112  0.23409154 0.731578947 0.0218927650 0.8890828402
## 157  0.23341960 0.732456140 0.0217692089 0.8890828402
## 773  0.23274703 0.733333333 0.0216460319 0.8890828402
## 1072 0.23207384 0.734210526 0.0215232329 0.8890828402
## 384  0.23140001 0.735087719 0.0214008104 0.8890828402
## 230  0.23072553 0.735964912 0.0212787630 0.8890828402
## 74   0.23005041 0.736842105 0.0211570893 0.8890828402
## 494  0.22937462 0.737719298 0.0210357881 0.8890828402
## 1318 0.22869818 0.738596491 0.0209148580 0.8890828402
## 1327 0.22802106 0.739473684 0.0207942976 0.8890828402
## 428  0.22734326 0.740350877 0.0206741056 0.8890828402
## 1120 0.22666478 0.741228070 0.0205542807 0.8890828402
## 352  0.22598560 0.742105263 0.0204348216 0.8890828402
## 273  0.22530572 0.742982456 0.0203157269 0.8890828402
## 537  0.22462513 0.743859649 0.0201969953 0.8890828402
## 1449 0.22394383 0.744736842 0.0200786256 0.8890828402
## 706  0.22326180 0.745614035 0.0199606164 0.8890828402
## 802  0.22257904 0.746491228 0.0198429664 0.8890828402
## 594  0.22189554 0.747368421 0.0197256743 0.8890828402
## 1441 0.22121129 0.748245614 0.0196087390 0.8890828402
## 261  0.22428024 0.748245614 0.0198774020 0.8947617565
## 791  0.22359911 0.749122807 0.0197603203 0.8947617565
## 943  0.22291724 0.750000000 0.0196435937 0.8947617565
## 920  0.22223461 0.750877193 0.0195272210 0.8947617565
## 1025 0.22155123 0.751754386 0.0194112009 0.8947617565
## 1082 0.22086708 0.752631579 0.0192955321 0.8947617565
## 1395 0.22018215 0.753508772 0.0191802134 0.8947617565
## 911  0.21949643 0.754385965 0.0190652435 0.8947617565
## 244  0.21880993 0.755263158 0.0189506213 0.8947617565
## 121  0.22191930 0.755263158 0.0192157302 0.9004583204
## 701  0.22123607 0.756140351 0.0191009609 0.9004583204
## 473  0.22055206 0.757017544 0.0189865378 0.9004583204
## 1484 0.21986724 0.757894737 0.0188724596 0.9004583204
## 994  0.21918163 0.758771930 0.0187587250 0.9004583204
## 1519 0.21849520 0.759649123 0.0186453329 0.9004583204
## 357  0.22163440 0.759649123 0.0189084150 0.9061725319
## 341  0.22095139 0.760526316 0.0187948761 0.9061725319
## 1276 0.22026757 0.761403509 0.0186816782 0.9061725319
## 15   0.21958293 0.762280702 0.0185688200 0.9061725319
## 1227 0.21889746 0.763157895 0.0184563005 0.9061725319
## 1020 0.21821116 0.764035088 0.0183441184 0.9061725319
## 957  0.21752402 0.764912281 0.0182322725 0.9061725319
## 1149 0.21683602 0.765789474 0.0181207616 0.9061725319
## 1429 0.21614716 0.766666667 0.0180095846 0.9061725319
## 737  0.21545743 0.767543860 0.0178987402 0.9061725319
## 268  0.21476682 0.768421053 0.0177882274 0.9061725319
## 432  0.21407533 0.769298246 0.0176780449 0.9061725319
## 1524 0.21338293 0.770175439 0.0175681915 0.9061725319
## 1487 0.21268962 0.771052632 0.0174586663 0.9061725319
## 1163 0.21199540 0.771929825 0.0173494679 0.9061725319
## 1245 0.21130025 0.772807018 0.0172405952 0.9061725319
## 1485 0.21060417 0.773684211 0.0171320471 0.9061725319
## 1434 0.20990713 0.774561404 0.0170238225 0.9061725319
## 897  0.20920914 0.775438596 0.0169159202 0.9061725319
## 922  0.20851018 0.776315789 0.0168083391 0.9061725319
## 921  0.20781025 0.777192982 0.0167010781 0.9061725319
## 532  0.20710933 0.778070175 0.0165941361 0.9061725319
## 1310 0.20640741 0.778947368 0.0164875119 0.9061725319
## 663  0.20570448 0.779824561 0.0163812044 0.9061725319
## 474  0.20500053 0.780701754 0.0162752126 0.9061725319
## 1118 0.20429555 0.781578947 0.0161695354 0.9061725319
## 784  0.20358953 0.782456140 0.0160641716 0.9061725319
## 1393 0.20288246 0.783333333 0.0159591201 0.9061725319
## 1086 0.20217433 0.784210526 0.0158543800 0.9061725319
## 151  0.20146513 0.785087719 0.0157499500 0.9061725319
## 478  0.20474801 0.785087719 0.0159997031 0.9119043912
## 636  0.20404275 0.785964912 0.0158951219 0.9119043912
## 173  0.20333642 0.786842105 0.0157908497 0.9119043912
## 387  0.20262901 0.787719298 0.0156868854 0.9119043912
## 1076 0.20192051 0.788596491 0.0155832279 0.9119043912
## 669  0.20121091 0.789473684 0.0154798762 0.9119043912
## 353  0.20050019 0.790350877 0.0153768292 0.9119043912
## 871  0.19978835 0.791228070 0.0152740858 0.9119043912
## 1193 0.19907537 0.792105263 0.0151716451 0.9119043912
## 1123 0.19836125 0.792982456 0.0150695060 0.9119043912
## 1233 0.19764595 0.793859649 0.0149676674 0.9119043912
## 873  0.19692949 0.794736842 0.0148661283 0.9119043912
## 1321 0.19621184 0.795614035 0.0147648877 0.9119043912
## 509  0.19549298 0.796491228 0.0146639446 0.9119043912
## 1367 0.19477292 0.797368421 0.0145632979 0.9119043912
## 556  0.19405163 0.798245614 0.0144629466 0.9119043912
## 1255 0.19332910 0.799122807 0.0143628897 0.9119043912
## 84   0.19260531 0.800000000 0.0142631262 0.9119043912
## 572  0.19188026 0.800877193 0.0141636550 0.9119043912
## 591  0.19115394 0.801754386 0.0140644753 0.9119043912
## 1315 0.19042631 0.802631579 0.0139655859 0.9119043912
## 89   0.19382828 0.802631579 0.0142067410 0.9176538981
## 944  0.19310510 0.803508772 0.0141076988 0.9176538981
## 941  0.19238063 0.804385965 0.0140089458 0.9176538981
## 1426 0.19165486 0.805263158 0.0139104812 0.9176538981
## 1274 0.19092778 0.806140351 0.0138123039 0.9176538981
## 347  0.19019937 0.807017544 0.0137144129 0.9176538981
## 935  0.19364368 0.807017544 0.0139538015 0.9234210526
## 243  0.19291994 0.807894737 0.0138557582 0.9234210526
## 1523 0.19219488 0.808771930 0.0137580001 0.9234210526
## 1468 0.19146849 0.809649123 0.0136605263 0.9234210526
## 24   0.19074075 0.810526316 0.0135633358 0.9234210526
## 1406 0.19001165 0.811403509 0.0134664277 0.9234210526
## 1230 0.18928117 0.812280702 0.0133698010 0.9234210526
## 918  0.18854929 0.813157895 0.0132734547 0.9234210526
## 454  0.18781601 0.814035088 0.0131773879 0.9234210526
## 978  0.18708130 0.814912281 0.0130815997 0.9234210526
## 787  0.18634515 0.815789474 0.0129860891 0.9234210526
## 1410 0.18560755 0.816666667 0.0128908551 0.9234210526
## 898  0.18486847 0.817543860 0.0127958970 0.9234210526
## 983  0.18412790 0.818421053 0.0127012136 0.9234210526
## 420  0.18338582 0.819298246 0.0126068041 0.9234210526
## 937  0.18264222 0.820175439 0.0125126676 0.9234210526
## 377  0.18189708 0.821052632 0.0124188031 0.9234210526
## 1246 0.18115039 0.821929825 0.0123252098 0.9234210526
## 585  0.18040211 0.822807018 0.0122318867 0.9234210526
## 1125 0.17965225 0.823684211 0.0121388329 0.9234210526
## 463  0.17890077 0.824561404 0.0120460475 0.9234210526
## 915  0.17814766 0.825438596 0.0119535296 0.9234210526
## 653  0.17739290 0.826315789 0.0118612783 0.9234210526
## 827  0.17663647 0.827192982 0.0117692928 0.9234210526
## 315  0.17587836 0.828070175 0.0116775721 0.9234210526
## 159  0.17511854 0.828947368 0.0115861154 0.9234210526
## 1283 0.17435700 0.829824561 0.0114949217 0.9234210526
## 615  0.17359371 0.830701754 0.0114039902 0.9234210526
## 721  0.17723137 0.830701754 0.0116322947 0.9292058549
## 1431 0.17647364 0.831578947 0.0115412094 0.9292058549
## 531  0.17571417 0.832456140 0.0114503854 0.9292058549
## 496  0.17495295 0.833333333 0.0113598218 0.9292058549
## 1344 0.17418995 0.834210526 0.0112695177 0.9292058549
## 573  0.17342515 0.835087719 0.0111794722 0.9292058549
## 425  0.17265854 0.835964912 0.0110896845 0.9292058549
## 1453 0.17189008 0.836842105 0.0110001538 0.9292058549
## 778  0.17111977 0.837719298 0.0109108791 0.9292058549
## 1224 0.17034756 0.838596491 0.0108218596 0.9292058549
## 397  0.16957346 0.839473684 0.0107330946 0.9292058549
## 657  0.16879742 0.840350877 0.0106445830 0.9292058549
## 35   0.16801943 0.841228070 0.0105563242 0.9292058549
## 992  0.16723946 0.842105263 0.0104683172 0.9292058549
## 472  0.16645749 0.842982456 0.0103805613 0.9292058549
## 1019 0.16567350 0.843859649 0.0102930555 0.9292058549
## 880  0.16488745 0.844736842 0.0102057992 0.9292058549
## 140  0.16409933 0.845614035 0.0101187914 0.9292058549
## 210  0.16330911 0.846491228 0.0100320313 0.9292058549
## 1303 0.16251676 0.847368421 0.0099455181 0.9292058549
## 614  0.16172226 0.848245614 0.0098592510 0.9292058549
## 1196 0.16092558 0.849122807 0.0097732292 0.9292058549
## 839  0.16012669 0.850000000 0.0096874519 0.9292058549
## 1475 0.15932557 0.850877193 0.0096019183 0.9292058549
## 1231 0.15852218 0.851754386 0.0095166276 0.9292058549
## 1014 0.15771650 0.852631579 0.0094315789 0.9292058549
## 1175 0.16157458 0.852631579 0.0096501845 0.9350083048
## 262  0.16077558 0.853508772 0.0095649818 0.9350083048
## 691  0.16466321 0.853508772 0.0097836294 0.9408284024
## 487  0.16857166 0.853508772 0.0100027118 0.9466661476
## 1039 0.16778908 0.854385965 0.0099169616 0.9466661476
## 1465 0.16700435 0.855263158 0.0098314534 0.9466661476
## 1381 0.16621744 0.856140351 0.0097461864 0.9466661476
## 413  0.16542831 0.857017544 0.0096611598 0.9466661476
## 450  0.16939687 0.857017544 0.0098791023 0.9525215405
## 861  0.16861546 0.857894737 0.0097939241 0.9525215405
## 302  0.17261635 0.857894737 0.0100119057 0.9583945811
## 1486 0.17184301 0.858771930 0.0099265769 0.9583945811
## 638  0.17106755 0.859649123 0.0098414876 0.9583945811
## 1435 0.17028995 0.860526316 0.0097566371 0.9583945811
## 451  0.16951016 0.861403509 0.0096720245 0.9583945811
## 1007 0.17357614 0.861403509 0.0098888776 0.9642852694
## 476  0.17280499 0.862280702 0.0098041151 0.9642852694
## 1361 0.17203170 0.863157895 0.0097195898 0.9642852694
## 175  0.17125624 0.864035088 0.0096353009 0.9642852694
## 170  0.17047860 0.864912281 0.0095512477 0.9642852694
## 1000 0.16969873 0.865789474 0.0094674294 0.9642852694
## 55   0.16891661 0.866666667 0.0093838452 0.9642852694
## 786  0.16813221 0.867543860 0.0093004943 0.9642852694
## 1116 0.16734549 0.868421053 0.0092173761 0.9642852694
## 422  0.16655642 0.869298246 0.0091344898 0.9642852694
## 593  0.16576498 0.870175439 0.0090518346 0.9642852694
## 1525 0.16497113 0.871052632 0.0089694097 0.9642852694
## 740  0.16417484 0.871929825 0.0088872145 0.9642852694
## 1111 0.16337606 0.872807018 0.0088052482 0.9642852694
## 904  0.16257478 0.873684211 0.0087235101 0.9642852694
## 1463 0.16177094 0.874561404 0.0086419994 0.9642852694
## 1529 0.16096452 0.875438596 0.0085607154 0.9642852694
## 1202 0.16015548 0.876315789 0.0084796574 0.9642852694
## 9    0.15934378 0.877192982 0.0083988246 0.9642852694
## 655  0.15852938 0.878070175 0.0083182163 0.9642852694
## 1024 0.15771225 0.878947368 0.0082378319 0.9642852694
## 1396 0.15689234 0.879824561 0.0081576705 0.9642852694
## 1228 0.15606961 0.880701754 0.0080777316 0.9642852694
## 1309 0.15524402 0.881578947 0.0079980142 0.9642852694
## 376  0.15441553 0.882456140 0.0079185179 0.9642852694
## 516  0.15358410 0.883333333 0.0078392418 0.9642852694
## 797  0.15274968 0.884210526 0.0077601852 0.9642852694
## 1068 0.15191222 0.885087719 0.0076813475 0.9642852694
## 147  0.15107168 0.885964912 0.0076027280 0.9642852694
## 1407 0.15022801 0.886842105 0.0075243259 0.9642852694
## 274  0.14938117 0.887719298 0.0074461406 0.9642852694
## 1325 0.14853110 0.888596491 0.0073681713 0.9642852694
## 44   0.14767776 0.889473684 0.0072904175 0.9642852694
## 1448 0.14682108 0.890350877 0.0072128783 0.9642852694
## 1488 0.14596103 0.891228070 0.0071355532 0.9642852694
## 410  0.14509754 0.892105263 0.0070584414 0.9642852694
## 1385 0.14423056 0.892982456 0.0069815422 0.9642852694
## 676  0.14336004 0.893859649 0.0069048551 0.9642852694
## 47   0.14248591 0.894736842 0.0068283793 0.9642852694
## 788  0.14160812 0.895614035 0.0067521141 0.9642852694
## 1319 0.14072660 0.896491228 0.0066760590 0.9642852694
## 878  0.13984130 0.897368421 0.0066002131 0.9642852694
## 1001 0.13895214 0.898245614 0.0065245759 0.9642852694
## 1103 0.13805907 0.899122807 0.0064491467 0.9642852694
## 351  0.13716202 0.900000000 0.0063739249 0.9642852694
## 1209 0.14186068 0.900000000 0.0065748465 0.9701936053
## 1144 0.14097715 0.900877193 0.0064994751 0.9701936053
## 1159 0.14008970 0.901754386 0.0064243104 0.9701936053
## 134  0.13919829 0.902631579 0.0063493517 0.9701936053
## 662  0.13830283 0.903508772 0.0062745985 0.9701936053
## 525  0.13740326 0.904385965 0.0062000500 0.9701936053
## 1141 0.13649950 0.905263158 0.0061257056 0.9701936053
## 1229 0.13559148 0.906140351 0.0060515647 0.9701936053
## 908  0.13467912 0.907017544 0.0059776266 0.9701936053
## 647  0.13376235 0.907894737 0.0059038907 0.9701936053
## 1128 0.13867144 0.907894737 0.0061020583 0.9761195889
## 799  0.13777046 0.908771930 0.0060281737 0.9761195889
## 414  0.13686516 0.909649123 0.0059544908 0.9761195889
## 1203 0.13595547 0.910526316 0.0058810088 0.9761195889
## 553  0.13504132 0.911403509 0.0058077271 0.9761195889
## 247  0.13412261 0.912280702 0.0057346451 0.9761195889
## 741  0.13319925 0.913157895 0.0056617622 0.9761195889
## 1411 0.13227117 0.914035088 0.0055890777 0.9761195889
## 477  0.13737817 0.914035088 0.0057852336 0.9820632202
## 661  0.13646834 0.914912281 0.0057124013 0.9820632202
## 1458 0.13555395 0.915789474 0.0056397669 0.9820632202
## 1080 0.13463488 0.916666667 0.0055673297 0.9820632202
## 820  0.13371106 0.917543860 0.0054950892 0.9820632202
## 734  0.13278238 0.918421053 0.0054230447 0.9820632202
## 467  0.13184875 0.919298246 0.0053511956 0.9820632202
## 1507 0.13091008 0.920175439 0.0052795413 0.9820632202
## 51   0.12996625 0.921052632 0.0052080812 0.9820632202
## 471  0.12901716 0.921929825 0.0051368148 0.9820632202
## 634  0.12806270 0.922807018 0.0050657413 0.9820632202
## 868  0.12710276 0.923684211 0.0049948602 0.9820632202
## 1234 0.12613722 0.924561404 0.0049241709 0.9820632202
## 27   0.13160739 0.924561404 0.0051166455 0.9880244991
## 245  0.13066495 0.925438596 0.0050458094 0.9880244991
## 513  0.12971715 0.926315789 0.0049751646 0.9880244991
## 317  0.12876389 0.927192982 0.0049047104 0.9880244991
## 626  0.12780503 0.928070175 0.0048344463 0.9880244991
## 469  0.12684045 0.928947368 0.0047643716 0.9880244991
## 1067 0.12587003 0.929824561 0.0046944859 0.9880244991
## 539  0.12489364 0.930701754 0.0046247885 0.9880244991
## 782  0.12391114 0.931578947 0.0045552788 0.9880244991
## 429  0.12292239 0.932456140 0.0044859563 0.9880244991
## 503  0.12192724 0.933333333 0.0044168203 0.9880244991
## 1332 0.12778561 0.933333333 0.0046063654 0.9940034257
## 715  0.12681982 0.934210526 0.0045370836 0.9940034257
## 1164 0.12584801 0.935087719 0.0044679879 0.9940034257
## 1408 0.12487007 0.935964912 0.0043990777 0.9940034257
## 672  0.12388584 0.936842105 0.0043303524 0.9940034257
## 735  0.12289516 0.937719298 0.0042618114 0.9940034257
## 1198 0.12189789 0.938596491 0.0041934542 0.9940034257
## 901  0.12089386 0.939473684 0.0041252802 0.9940034257
## 710  0.11988290 0.940350877 0.0040572889 0.9940034257
## 890  0.11886483 0.941228070 0.0039894797 0.9940034257
## 909  0.11783948 0.942105263 0.0039218520 0.9940034257
## 17   0.12418848 0.942105263 0.0041085270 1.0000000000
## 303  0.12320200 0.942982456 0.0040407545 1.0000000000
## 1433 0.12220891 0.943859649 0.0039731631 1.0000000000
## 1081 0.12120906 0.944736842 0.0039057522 1.0000000000
## 960  0.12020228 0.945614035 0.0038385212 1.0000000000
## 409  0.11918837 0.946491228 0.0037714696 1.0000000000
## 225  0.11816717 0.947368421 0.0037045968 1.0000000000
## 917  0.11713847 0.948245614 0.0036379023 1.0000000000
## 1160 0.11610207 0.949122807 0.0035713855 1.0000000000
## 1482 0.11505776 0.950000000 0.0035050460 1.0000000000
## 10   0.11400533 0.950877193 0.0034388832 1.0000000000
## 619  0.11294453 0.951754386 0.0033728965 1.0000000000
## 544  0.11187514 0.952631579 0.0033070854 1.0000000000
## 1043 0.11079689 0.953508772 0.0032414494 1.0000000000
## 1517 0.10970952 0.954385965 0.0031759879 1.0000000000
## 819  0.10861277 0.955263158 0.0031107004 1.0000000000
## 702  0.10750633 0.956140351 0.0030455865 1.0000000000
## 3    0.10638990 0.957017544 0.0029806455 1.0000000000
## 324  0.10526316 0.957894737 0.0029158769 1.0000000000
## 660  0.10412577 0.958771930 0.0028512803 1.0000000000
## 1152 0.10297738 0.959649123 0.0027868551 1.0000000000
## 455  0.10181761 0.960526316 0.0027226008 1.0000000000
## 1457 0.10064607 0.961403509 0.0026585169 1.0000000000
## 1511 0.09946233 0.962280702 0.0025946028 1.0000000000
## 499  0.09826595 0.963157895 0.0025308581 1.0000000000
## 1345 0.09705646 0.964035088 0.0024672822 1.0000000000
## 1405 0.09583337 0.964912281 0.0024038746 1.0000000000
## 1201 0.09459613 0.965789474 0.0023406349 1.0000000000
## 1363 0.09334418 0.966666667 0.0022775625 1.0000000000
## 1447 0.09207693 0.967543860 0.0022146570 1.0000000000
## 555  0.09079372 0.968421053 0.0021519178 1.0000000000
## 418  0.08949387 0.969298246 0.0020893443 1.0000000000
## 1280 0.08817664 0.970175439 0.0020269363 1.0000000000
## 958  0.08684123 0.971052632 0.0019646930 1.0000000000
## 755  0.08548678 0.971929825 0.0019026141 1.0000000000
## 1513 0.08411238 0.972807018 0.0018406991 1.0000000000
## 1527 0.08271702 0.973684211 0.0017789474 1.0000000000
## 412  0.08129962 0.974561404 0.0017173585 1.0000000000
## 1308 0.07985901 0.975438596 0.0016559321 1.0000000000
## 883  0.07839390 0.976315789 0.0015946676 1.0000000000
## 1329 0.07690289 0.977192982 0.0015335645 1.0000000000
## 949  0.07538443 0.978070175 0.0014726223 1.0000000000
## 1165 0.07383682 0.978947368 0.0014118406 1.0000000000
## 1317 0.07225821 0.979824561 0.0013512188 1.0000000000
## 754  0.07064648 0.980701754 0.0012907566 1.0000000000
## 673  0.06899934 0.981578947 0.0012304534 1.0000000000
## 1282 0.06731416 0.982456140 0.0011703088 1.0000000000
## 633  0.06558801 0.983333333 0.0011103222 1.0000000000
## 1065 0.06381757 0.984210526 0.0010504933 1.0000000000
## 21   0.06199903 0.985087719 0.0009908215 1.0000000000
## 1041 0.06012802 0.985964912 0.0009313064 1.0000000000
## 981  0.05819949 0.986842105 0.0008719475 1.0000000000
## 823  0.05620750 0.987719298 0.0008127444 1.0000000000
## 1322 0.05414505 0.988596491 0.0007536966 1.0000000000
## 549  0.05200374 0.989473684 0.0006948036 1.0000000000
## 1083 0.04977340 0.990350877 0.0006360650 1.0000000000
## 1365 0.04744146 0.991228070 0.0005774803 1.0000000000
## 712  0.04499213 0.992105263 0.0005190491 1.0000000000
## 1512 0.04240505 0.992982456 0.0004607709 1.0000000000
## 37   0.03965326 0.993859649 0.0004026453 1.0000000000
## 1472 0.03669974 0.994736842 0.0003446717 1.0000000000
## 836  0.03349114 0.995614035 0.0002868499 1.0000000000
## 796  0.02994557 0.996491228 0.0002291792 1.0000000000
## 629  0.02592513 0.997368421 0.0001716594 1.0000000000
## 654  0.02116085 0.998245614 0.0001142898 1.0000000000
## 552  0.01495809 0.999122807 0.0000570702 1.0000000000
## 350         NaN 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.703 0.66-0.75
## SPEC           0.710 0.68-0.74
## MCC            0.367      <NA>
## Informedness   0.412      <NA>
## PREC           0.453 0.41-0.49
## NPV            0.875 0.85-0.89
## FPR            0.290      <NA>
## F1             0.551      <NA>
## TP           274.000      <NA>
## FP           331.000      <NA>
## TN           809.000      <NA>
## FN           116.000      <NA>
## AUC-ROC        0.770  0.74-0.8
## AUC-PR         0.550      <NA>
## AUC-PRG        0.110      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.477 0.43-0.53
## SPEC           0.861 0.84-0.88
## MCC            0.352      <NA>
## Informedness   0.337      <NA>
## PREC           0.539 0.49-0.59
## NPV            0.828 0.81-0.85
## FPR            0.139      <NA>
## F1             0.506      <NA>
## TP           186.000      <NA>
## FP           159.000      <NA>
## TN           981.000      <NA>
## FN           204.000      <NA>
## AUC-ROC        0.770  0.74-0.8
## AUC-PR         0.550      <NA>
## AUC-PRG        0.110      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##            one       zero  obs  Group TP TN FP FN      SENS       SPEC
## 32 0.963538527 0.03646147  one Group1  1 28  0  8 0.1111111 1.00000000
## 35 0.929214478 0.07078552  one Group1  2 28  0  7 0.2222222 1.00000000
## 20 0.862055361 0.13794464 zero Group1  2 27  1  7 0.2222222 0.96428571
## 34 0.857621074 0.14237893  one Group1  3 27  1  6 0.3333333 0.96428571
## 28 0.819632411 0.18036759 zero Group1  3 26  2  6 0.3333333 0.92857143
## 37 0.817577481 0.18242252  one Group1  4 26  2  5 0.4444444 0.92857143
## 29 0.735846698 0.26415330  one Group1  5 26  2  4 0.5555556 0.92857143
## 10 0.671904087 0.32809591 zero Group1  5 25  3  4 0.5555556 0.89285714
## 23 0.629343510 0.37065649 zero Group1  5 24  4  4 0.5555556 0.85714286
## 22 0.458864689 0.54113531 zero Group1  5 23  5  4 0.5555556 0.82142857
## 31 0.352911919 0.64708808  one Group1  6 23  5  3 0.6666667 0.82142857
## 7  0.352816343 0.64718366 zero Group1  6 22  6  3 0.6666667 0.78571429
## 5  0.340206295 0.65979370 zero Group1  6 21  7  3 0.6666667 0.75000000
## 4  0.259961039 0.74003896 zero Group1  6 20  8  3 0.6666667 0.71428571
## 30 0.222656578 0.77734342  one Group1  7 20  8  2 0.7777778 0.71428571
## 1  0.219107375 0.78089263 zero Group1  7 19  9  2 0.7777778 0.67857143
## 3  0.179397985 0.82060201 zero Group1  7 18 10  2 0.7777778 0.64285714
## 6  0.155187443 0.84481256 zero Group1  7 17 11  2 0.7777778 0.60714286
## 13 0.139623582 0.86037642 zero Group1  7 16 12  2 0.7777778 0.57142857
## 17 0.137356162 0.86264384 zero Group1  7 15 13  2 0.7777778 0.53571429
## 36 0.134499788 0.86550021  one Group1  8 15 13  1 0.8888889 0.53571429
## 27 0.129716828 0.87028317 zero Group1  8 14 14  1 0.8888889 0.50000000
## 11 0.124279857 0.87572014 zero Group1  8 13 15  1 0.8888889 0.46428571
## 24 0.084666088 0.91533391 zero Group1  8 12 16  1 0.8888889 0.42857143
## 18 0.059109330 0.94089067 zero Group1  8 11 17  1 0.8888889 0.39285714
## 21 0.029519940 0.97048006 zero Group1  8 10 18  1 0.8888889 0.35714286
## 8  0.020859329 0.97914067 zero Group1  8  9 19  1 0.8888889 0.32142857
## 16 0.016065113 0.98393489 zero Group1  8  8 20  1 0.8888889 0.28571429
## 9  0.015857523 0.98414248 zero Group1  8  7 21  1 0.8888889 0.25000000
## 33 0.015159953 0.98484005  one Group1  9  7 21  0 1.0000000 0.25000000
## 19 0.013630712 0.98636929 zero Group1  9  6 22  0 1.0000000 0.21428571
## 26 0.012780167 0.98721983 zero Group1  9  5 23  0 1.0000000 0.17857143
## 15 0.011388134 0.98861187 zero Group1  9  4 24  0 1.0000000 0.14285714
## 14 0.010347946 0.98965205 zero Group1  9  3 25  0 1.0000000 0.10714286
## 12 0.009959247 0.99004075 zero Group1  9  2 26  0 1.0000000 0.07142857
## 2  0.009938938 0.99006106 zero Group1  9  1 27  0 1.0000000 0.03571429
## 25 0.007155641 0.99284436 zero Group1  9  0 28  0 1.0000000 0.00000000
##    Informedness      PREC       NPV      MARK        F1        MCC        FPR
## 32   0.11111111 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000
## 35   0.22222222 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000
## 20   0.18650794 0.6666667 0.7941176 0.4607843 0.3333333 0.29315513 0.03571429
## 34   0.29761905 0.7500000 0.8181818 0.5681818 0.4615385 0.41121981 0.03571429
## 28   0.26190476 0.6000000 0.8125000 0.4125000 0.4285714 0.32868787 0.07142857
## 37   0.37301587 0.6666667 0.8387097 0.5053763 0.5333333 0.43418130 0.07142857
## 29   0.48412698 0.7142857 0.8666667 0.5809524 0.6250000 0.53033454 0.07142857
## 10   0.44841270 0.6250000 0.8620690 0.4870690 0.5882353 0.46734132 0.10714286
## 23   0.41269841 0.5555556 0.8571429 0.4126984 0.5555556 0.41269841 0.14285714
## 22   0.37698413 0.5000000 0.8518519 0.3518519 0.5263158 0.36420127 0.17857143
## 31   0.48809524 0.5454545 0.8846154 0.4300699 0.6000000 0.45816491 0.17857143
## 7    0.45238095 0.5000000 0.8800000 0.3800000 0.5714286 0.41461399 0.21428571
## 5    0.41666667 0.4615385 0.8750000 0.3365385 0.5454545 0.37446543 0.25000000
## 4    0.38095238 0.4285714 0.8695652 0.2981366 0.5217391 0.33701019 0.28571429
## 30   0.49206349 0.4666667 0.9090909 0.3757576 0.5833333 0.42999603 0.28571429
## 1    0.45634921 0.4375000 0.9047619 0.3422619 0.5600000 0.39521001 0.32142857
## 3    0.42063492 0.4117647 0.9000000 0.3117647 0.5384615 0.36213136 0.35714286
## 6    0.38492063 0.3888889 0.8947368 0.2836257 0.5185185 0.33041398 0.39285714
## 13   0.34920635 0.3684211 0.8888889 0.2573099 0.5000000 0.29975701 0.42857143
## 17   0.31349206 0.3500000 0.8823529 0.2323529 0.4827586 0.26989035 0.46428571
## 36   0.42460317 0.3809524 0.9375000 0.3184524 0.5333333 0.36771714 0.46428571
## 27   0.38888889 0.3636364 0.9333333 0.2969697 0.5161290 0.33983557 0.50000000
## 11   0.35317460 0.3478261 0.9285714 0.2763975 0.5000000 0.31243653 0.53571429
## 24   0.31746032 0.3333333 0.9230769 0.2564103 0.4848485 0.28530700 0.57142857
## 18   0.28174603 0.3200000 0.9166667 0.2366667 0.4705882 0.25822450 0.60714286
## 21   0.24603175 0.3076923 0.9090909 0.2167832 0.4571429 0.23094491 0.64285714
## 8    0.21031746 0.2962963 0.9000000 0.1962963 0.4444444 0.20318597 0.67857143
## 16   0.17460317 0.2857143 0.8888889 0.1746032 0.4324324 0.17460317 0.71428571
## 9    0.13888889 0.2758621 0.8750000 0.1508621 0.4210526 0.14475174 0.75000000
## 33   0.25000000 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000
## 19   0.21428571 0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429
## 26   0.17857143 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857
## 15   0.14285714 0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286
## 14   0.10714286 0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714
## 12   0.07142857 0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143
## 2    0.03571429 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571
## 25   0.00000000 0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000
##             PG         RG
## 32 1.000000000 0.00000000
## 35 1.000000000 0.00000000
## 20 0.373015873 0.00000000
## 34 0.502232143 0.03968254
## 28 0.282857143 0.03968254
## 37 0.373015873 0.11816578
## 29 0.444606414 0.22927690
## 10 0.315290179 0.22927690
## 23 0.229276896 0.22927690
## 22 0.169642857 0.22927690
## 31 0.217827627 0.37301587
## 7  0.169642857 0.37301587
## 5  0.133136095 0.37301587
## 4  0.104956268 0.37301587
## 30 0.137777778 0.54938272
## 1  0.112304687 0.54938272
## 3  0.091695502 0.54938272
## 6  0.074845679 0.54938272
## 13 0.060941828 0.54938272
## 17 0.049375000 0.54938272
## 36 0.069322967 0.75837743
## 27 0.057851240 0.75837743
## 11 0.048069133 0.75837743
## 24 0.039682540 0.75837743
## 18 0.032457143 0.75837743
## 21 0.026204565 0.75837743
## 8  0.020772095 0.75837743
## 16 0.016034985 0.75837743
## 9  0.011890606 0.75837743
## 33 0.022500000 1.00000000
## 19 0.018061543 1.00000000
## 26 0.014125279 1.00000000
## 15 0.010625738 1.00000000
## 14 0.007507415 1.00000000
## 12 0.004723032 1.00000000
## 2  0.002232143 1.00000000
## 25 0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          0.714 0.53-0.85
## MCC           0.430      <NA>
## Informedness  0.492      <NA>
## PREC          0.467  0.25-0.7
## NPV           0.909 0.72-0.97
## FPR           0.286      <NA>
## F1            0.583      <NA>
## TP            7.000      <NA>
## FP            8.000      <NA>
## TN           20.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.790  0.6-0.98
## AUC-PR        0.520      <NA>
## AUC-PRG       0.170      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.556 0.27-0.81
## SPEC          0.857 0.69-0.94
## MCC           0.413      <NA>
## Informedness  0.413      <NA>
## PREC          0.556 0.27-0.81
## NPV           0.857 0.69-0.94
## FPR           0.143      <NA>
## F1            0.556      <NA>
## TP            5.000      <NA>
## FP            4.000      <NA>
## TN           24.000      <NA>
## FN            4.000      <NA>
## AUC-ROC       0.790  0.6-0.98
## AUC-PR        0.520      <NA>
## AUC-PRG       0.170      <NA>